Changeset 12430
- Timestamp:
- 2020-02-21T11:08:32+01:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
utils/CI/sette_ticket2304/sette_list_avail_rev.sh
r12289 r12430 1 1 #!/bin/bash -f 2 2 # set -vx 3 4 SETTE_DIR=$(cd $(dirname "$0"); pwd) 5 MAIN_DIR=$(dirname $SETTE_DIR) 6 7 . ./param.cfg 8 9 if [ $# -gt 0 ]; then 10 while getopts c:h option; do 11 case $option in 12 c) COMPILER=$OPTARG;; 13 h | *) echo '' 14 echo 'sette_list_avail_rev.sh : ' 15 echo ' list all sette directory and available revisions created with the compiler specified in param.cfg or in the startup file)' 16 echo '-c COMPILER_name :' 17 echo ' list all sette directory and available revisions created with the compiler specified' 18 echo '' 19 exit 42;; 20 esac 21 done 22 shift $((OPTIND - 1)) 23 fi 24 3 25 # 4 26 lst_rev () { … … 35 57 } 36 58 37 SETTE_DIR=$(cd $(dirname "$0"); pwd)38 MAIN_DIR=$(dirname $SETTE_DIR)39 . ./param.cfg40 59 41 60 NEMO_VALID=${NEMO_VALIDATION_DIR}/
Note: See TracChangeset
for help on using the changeset viewer.