diff --git a/lib/dunemodules.lib b/lib/dunemodules.lib index cf9a66bdd3e18bc936792f41d1e2894e8f4474a7..548317f9322cd7cafe17e625b3495b075aba9bf3 100644 --- a/lib/dunemodules.lib +++ b/lib/dunemodules.lib @@ -232,6 +232,10 @@ setup_control_path() { local TMP="" # foreach dir in $@ while read dir; do + if ! test -e "$dir"; then + echo "ERROR: The path \"$dir\" given in DUNE_CONTROL_PATH does not exist." + exit 1 + fi TMP=$TMP:"$(canonicalname "$dir")" done <<EOF $(echo $DUNE_CONTROL_PATH | sed -e 's/:\+/:/g' | tr ':' '\n')