Changeset 346
- Timestamp:
- 03/22/08 18:10:25 (5 years ago)
- Files:
-
- 1 modified
-
make_package.sh (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
make_package.sh
r245 r346 31 31 # create pip.tar 32 32 if [ -d "pip" ]; then 33 TAR_STRING="$TAR_STRING *.tar" 33 if [$TAR_STRING == ""]; then 34 TAR_STRING="$TAR_STRING *.tar" 35 fi 34 36 cd pip 35 37 tar cvf ../pip.tar * --exclude=*/.svn* … … 39 41 # create templates.tar 40 42 if [ -d "templates" ]; then 41 TAR_STRING="$TAR_STRING *.tar" 43 if [$TAR_STRING == ""]; then 44 TAR_STRING="$TAR_STRING *.tar" 45 fi 42 46 cd templates 43 47 tar cvf ../templates.tar * --exclude=*/.svn* … … 47 51 # create acptemplates.tar 48 52 if [ -d "acptemplates" ]; then 49 TAR_STRING="$TAR_STRING *.tar" 53 if [$TAR_STRING == ""]; then 54 TAR_STRING="$TAR_STRING *.tar" 55 fi 50 56 cd acptemplates 51 57 tar cvf ../acptemplates.tar * --exclude=*/.svn*
