aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Manison <amanison@anselsystems.com>2010-05-01 19:21:53 +0000
committerAndrew Manison <amanison@anselsystems.com>2010-05-01 19:21:53 +0000
commitbe0580cea9487dae7b0dae78d9c403a03d2b4c76 (patch)
treee5e99c4038942a8e5581de97c309546ccb26a213
parent06dd0dc115d6d0370791eeea58e0bb5da3d0f7ae (diff)
downloadalpine_aports-be0580cea9487dae7b0dae78d9c403a03d2b4c76.tar.bz2
alpine_aports-be0580cea9487dae7b0dae78d9c403a03d2b4c76.tar.xz
alpine_aports-be0580cea9487dae7b0dae78d9c403a03d2b4c76.zip
Added marker files to build, and noclean option.
-rwxr-xr-xrebuild-alpine.sh10
1 files 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 () {
33 cd $rootdir 33 cd $rootdir
34} 34}
35 35
36echo "Removing traces of previous builds" 36touch START_OF_BUILD.txt
37tmp=$(distclean) 37
38if [ "$1" != "noclean" ] ; then
39 echo "Removing traces of previous builds"
40 tmp=$(distclean)
41fi
38 42
39echo "Refresh aports tree" 43echo "Refresh aports tree"
40git pull 44git pull
@@ -44,5 +48,7 @@ for s in main testing nonfree unstable ; do
44 build $s 48 build $s
45done 49done
46 50
51touch END_OF_BUILD.txt
52
47echo "Done" 53echo "Done"
48 54