Changes in npl/syncupdates [c5d681f:e15a700]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
npl/syncupdates
rc5d681f re15a700 1 1 #!/bin/bash 2 2 3 rm -rf .tmp 2>/dev/null 3 4 4 HOST="updates@www.syn-3.nl"; 5 5 … … 19 19 echo "Searching packages..." 20 20 for PKG in `find . -name "$FILTER"`; do 21 echo $PKG 21 22 22 23 #dont upload _dev stuff, we dont use it and it wastes space and time :) … … 25 26 fi 26 27 27 #echo -n "Verifying update $PKG...";28 echo -n "Verifying update $PKG..."; 28 29 TGZ=`./pkgname $PKG` || exit 1 30 29 31 30 32 MOD= … … 35 37 #dont upload mods by default 36 38 if [ "$MOD" ] && ! [ "$MODS" ]; then 37 echo "NOT uploading uncommitted version. (use 'MODS=1 $0 .... ' to upload anyway) : $PKG"39 echo "NOT uploading uncommitted version. (use 'MODS=1 $0 .... ' to upload anyway)" 38 40 continue 39 41 fi
Note: See TracChangeset
for help on using the changeset viewer.