From be0580cea9487dae7b0dae78d9c403a03d2b4c76 Mon Sep 17 00:00:00 2001 From: Andrew Manison Date: Sat, 1 May 2010 19:21:53 +0000 Subject: Added marker files to build, and noclean option. --- rebuild-alpine.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/rebuild-alpine.sh b/rebuild-alpine.sh index 7535a44817..f613265ae4 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" -- cgit v1.2.3