-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added TUV-X download in the build script
- Loading branch information
Aditya Dendukuri
committed
May 23, 2024
1 parent
4a5ce0e
commit f8c08dd
Showing
2 changed files
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,9 @@ if [[ ! -d "${TUVX_HOME}" ]]; then | |
fi | ||
|
||
# download and build TUV-X | ||
echo "Building TUV-x" | ||
echo "Downloading and Building TUV-x" | ||
cd ${TUVX_HOME} | ||
git clone [email protected]:NCAR/tuv-x.git | ||
cd tuv-x | ||
mkdir build | ||
cd build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ if [[ ! -d "${TUVX_HOME}" ]]; then | |
fi | ||
|
||
# get & build the source code of TUV-x | ||
echo "Building TUV-x" | ||
echo "Downloading and Building TUV-x" | ||
cd ${TUVX_HOME} | ||
git clone [email protected]:NCAR/tuv-x.git | ||
cd tuv-x | ||
|