diff options
-rwxr-xr-x | examples/auto/build | 2 | ||||
-rwxr-xr-x | examples/auto/clean | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/examples/auto/build b/examples/auto/build index 34956c13d..6d559e8cf 100755 --- a/examples/auto/build +++ b/examples/auto/build @@ -1,3 +1,3 @@ #!/bin/sh -lb build noauto "${@}" 2>&1 | tee binary.log +lb build noauto "${@}" 2>&1 | tee build.log diff --git a/examples/auto/clean b/examples/auto/clean index 436f52d9d..3e2403257 100755 --- a/examples/auto/clean +++ b/examples/auto/clean @@ -1,5 +1,6 @@ #!/bin/sh lb clean noauto "${@}" + rm -f config/binary config/bootstrap config/chroot config/common config/source -rm -f binary.log +rm -f build.log |