We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91e32b7 commit 64edf09Copy full SHA for 64edf09
env.sh
@@ -32,9 +32,9 @@ export NTA_ROOTDIR=$NTA
32
# different paths to set: DYLD_LIBRARY_PATH on Mac and LD_LIBRARY_PATH on
33
# Linux.
34
LDIR="$NTA/lib"
35
-if [[ ! "$DYLD_LIBRARY_PATH" =~ "$LDIR" ]]; then
+if [[ ! "$DYLD_LIBRARY_PATH" == "$LDIR" ]]; then
36
export DYLD_LIBRARY_PATH=$LDIR:$DYLD_LIBRARY_PATH
37
fi
38
-if [[ ! "$LD_LIBRARY_PATH" =~ "$LDIR" ]]; then
+if [[ ! "$LD_LIBRARY_PATH" == "$LDIR" ]]; then
39
export LD_LIBRARY_PATH=$LDIR:$LD_LIBRARY_PATH
40
0 commit comments