Changeset 26744 for issm/trunk/externalpackages/shell2junit/install.sh
- Timestamp:
- 12/22/21 10:39:44 (3 years ago)
- Location:
- issm/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk
- Property svn:mergeinfo changed
/issm/trunk-jpl merged: 25837-25866,25868-25993,25995-26330,26332-26733,26736-26739,26741
- Property svn:mergeinfo changed
-
issm/trunk/externalpackages/shell2junit/install.sh
r16629 r26744 3 3 4 4 5 # Some cleanup6 rm -rf install 7 mkdir install 5 ## Constants 6 # 7 VER="1.0.0" 8 8 9 cp patch/sh2ju.sh install/ 9 PREFIX="${ISSM_DIR}/externalpackages/shell2junit/install" # Set to location where external package should be installed 10 11 # Cleanup 12 rm -rf ${PREFIX} 13 mkdir -p ${PREFIX}/bin 14 15 # Download source 16 $ISSM_DIR/scripts/DownloadExternalPackage.sh "https://issm.ess.uci.edu/files/externalpackages/shell2junit-${VER}.zip" "shell2junit-${VER}.zip" 17 18 # Unpack source 19 unzip -q shell2junit-${VER}.zip 20 21 # Install 22 mv shell2junit-${VER}/sh2ju.sh ${PREFIX}/bin 23 24 # Cleanup 25 rm -rf shell2junit-${VER}
Note:
See TracChangeset
for help on using the changeset viewer.