Changeset c5d681f for npl/syncupdates
- Timestamp:
- 09/29/17 15:09:23 (8 years ago)
- Branches:
- master, perl-5.22
- Children:
- 9684832
- Parents:
- 10bd92c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
npl/syncupdates
r10bd92c rc5d681f 1 1 #!/bin/bash 2 2 3 3 rm -rf .tmp 2>/dev/null 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 $PKG22 21 23 22 #dont upload _dev stuff, we dont use it and it wastes space and time :) … … 26 25 fi 27 26 28 echo -n "Verifying update $PKG...";27 #echo -n "Verifying update $PKG..."; 29 28 TGZ=`./pkgname $PKG` || exit 1 30 31 29 32 30 MOD= … … 37 35 #dont upload mods by default 38 36 if [ "$MOD" ] && ! [ "$MODS" ]; then 39 echo "NOT uploading uncommitted version. (use 'MODS=1 $0 .... ' to upload anyway) "37 echo "NOT uploading uncommitted version. (use 'MODS=1 $0 .... ' to upload anyway): $PKG" 40 38 continue 41 39 fi
Note: See TracChangeset
for help on using the changeset viewer.