Changeset 364 for SH_SHM/branches/2011.2/setup/decompress.sh
- Timestamp:
- 04/06/2011 02:17:06 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
SH_SHM/branches/2011.2/setup/decompress.sh
r337 r364 22 22 CDIR=`pwd` 23 23 cd $TMPDIR 24 python ./setup/setup.py 24 25 # parse options 26 while getopts "l:f:v" OPTION 27 do 28 case $OPTION in 29 l) 30 LOCSAT=$OPTARG 31 ;; 32 f) 33 FK=$OPTARG 34 ;; 35 v) 36 VERBOSE=1 37 ;; 38 esac 39 done 40 41 [ "$LOCSAT" = "" ] || LOCSAT="--locsat=$LOCSAT" 42 [ "$FK" = "" ] || FK="--fk=$FK" 43 [ "$VERBOSE" = "" ] || VERBOSE="--debug" 44 45 python ./setup/setup.py $LOCSAT $FK $VERBOSE 25 46 26 47 result=$?
Note: See TracChangeset
for help on using the changeset viewer.