diff options
Diffstat (limited to 'abs/extra-testing/vim/fetch_patches.sh')
-rw-r--r-- | abs/extra-testing/vim/fetch_patches.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/abs/extra-testing/vim/fetch_patches.sh b/abs/extra-testing/vim/fetch_patches.sh index 03e16e2..2ce1019 100644 --- a/abs/extra-testing/vim/fetch_patches.sh +++ b/abs/extra-testing/vim/fetch_patches.sh @@ -17,7 +17,7 @@ get_patches() { echo -e "\tfetching checksumfile for patches" wget ${_rpath}/MD5SUMS >/dev/null 2>&1 - downloads=0 + downloads=-1 for _line in $(/bin/cat MD5SUMS); do downloads=$((${downloads} + 1)) _md5=$(echo $_line | cut -d ' ' -f1) @@ -42,7 +42,8 @@ get_patches() { return 1 fi done - + cd $startdir/src/patches + rm 7.2.001-100.gz ######## if [ ${downloads} != ${_patchlevel} ]; then |