-
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.
- Loading branch information
Mei-Hui Su
authored and
Mei-Hui Su
committed
Dec 13, 2023
1 parent
69a058e
commit 00f2557
Showing
2 changed files
with
24 additions
and
1 deletion.
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
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/bin/bash | ||
|
||
## this is to run the vs30_query with proper LD_LIBRARY_PATH and | ||
## DYLD_LIBRARY_PATH that mac os seems to like to eliminate under | ||
## SIP mode | ||
|
||
# Process options | ||
FLAGS="" | ||
CONF="" | ||
|
||
# Pass along all arguments | ||
### location | ||
|
||
if [ "$UCVM_INSTALL_PATH" ] ; then | ||
SCRIPT_DIR="$UCVM_INSTALL_PATH"/bin | ||
else | ||
SCRIPT_DIR="$( cd "$( dirname "$0" )" && pwd )" | ||
fi | ||
|
||
source ${SCRIPT_DIR}/../conf/ucvm_env.sh | ||
${SCRIPT_DIR}/vs30_query $@ | ||
|
||
exit 0 |