diff options
author | Andrew Manison <amanison@anselsystems.com> | 2010-05-01 19:21:53 +0000 |
---|---|---|
committer | Andrew Manison <amanison@anselsystems.com> | 2010-05-01 19:21:53 +0000 |
commit | be0580cea9487dae7b0dae78d9c403a03d2b4c76 (patch) | |
tree | e5e99c4038942a8e5581de97c309546ccb26a213 /rebuild-alpine.sh | |
parent | 06dd0dc115d6d0370791eeea58e0bb5da3d0f7ae (diff) | |
download | aports-be0580cea9487dae7b0dae78d9c403a03d2b4c76.tar.bz2 aports-be0580cea9487dae7b0dae78d9c403a03d2b4c76.tar.xz |
Added marker files to build, and noclean option.
Diffstat (limited to 'rebuild-alpine.sh')
-rwxr-xr-x | rebuild-alpine.sh | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/rebuild-alpine.sh b/rebuild-alpine.sh index 7535a4481..f613265ae 100755 --- a/rebuild-alpine.sh +++ b/rebuild-alpine.sh @@ -33,8 +33,12 @@ build () { cd $rootdir } -echo "Removing traces of previous builds" -tmp=$(distclean) +touch START_OF_BUILD.txt + +if [ "$1" != "noclean" ] ; then + echo "Removing traces of previous builds" + tmp=$(distclean) +fi echo "Refresh aports tree" git pull @@ -44,5 +48,7 @@ for s in main testing nonfree unstable ; do build $s done +touch END_OF_BUILD.txt + echo "Done" |