diff options
Diffstat (limited to 'short-tests-cmake.sh')
| -rwxr-xr-x | short-tests-cmake.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/short-tests-cmake.sh b/short-tests-cmake.sh index e414441..23cf66c 100755 --- a/short-tests-cmake.sh +++ b/short-tests-cmake.sh @@ -1,16 +1,16 @@ if [ ! -n "$CUDA_INSTALL_PATH" ]; then echo "ERROR ** Install CUDA Toolkit and set CUDA_INSTALL_PATH."; - exit; + exit 1; fi if [ ! -n "$CONFIG" ]; then echo "ERROR ** set the CONFIG env variable to one of those found in ./accel-sim-framework/util/job_launching/configs/define-standard-cfgs.yml"; - exit; + exit 1; fi if [ ! -n "$GPUAPPS_ROOT" ]; then echo "ERROR ** GPUAPPS_ROOT to a location where the apps have been compiled"; - exit; + exit 1; fi git config --system --add safe.directory '*' |
