Changeset 329 for SH_SHM/trunk/setup/decompress.sh
- Timestamp:
- 02/17/2011 05:22:44 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
SH_SHM/trunk/setup/decompress.sh
r327 r329 11 11 ARCHIVE=`awk '/^__ARCHIVE_BELOW__/ {print NR + 1; exit 0; }' $0` 12 12 13 tail -n+$ARCHIVE $0 | base64 -d | tar x j-C $TMPDIR13 tail -n+$ARCHIVE $0 | base64 -d | tar xz -C $TMPDIR 14 14 15 15 CDIR=`pwd` 16 16 cd $TMPDIR 17 python ./setup .py17 python ./setup/setup.py 18 18 19 19 result=$? … … 26 26 else 27 27 echo "Installation unsuccessful, keeping temporary directory..." 28 echo "Please check manually setup.py in $TMPDIR" 28 echo "" 29 echo "You can restart installation procedure by cd'ing into" 30 echo $TMPDIR "and running ./setup/setup.py [--debug]" 29 31 exit 1 30 32 fi
Note: See TracChangeset
for help on using the changeset viewer.