We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f1e0ae commit 72036b9Copy full SHA for 72036b9
1 file changed
test/run_unit
@@ -1,7 +1,7 @@
1
#!/bin/bash
2
3
-if [[ -z "${UCVM_INSTALL_PATH}" ]]; then
4
- if [[ -f "${UCVM_INSTALL_PATH}/model/cca/lib" ]]; then
+if [[ ! -z "${UCVM_INSTALL_PATH}" ]]; then
+ if [[ -d "${UCVM_INSTALL_PATH}/model/cca/lib" ]]; then
5
env DYLD_LIBRARY_PATH=${UCVM_INSTALL_PATH}/model/cca/lib:${DYLD_LIBRARY_PATH} ./test_cca
6
exit
7
fi
0 commit comments