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 f01c14d commit ea7abacCopy full SHA for ea7abac
dist/bin/common
@@ -7,7 +7,7 @@
7
# save terminal settings
8
saved_stty=$(stty -g 2>/dev/null)
9
# clear on error so we don't later try to restore them
10
-if [[ ! $? ]]; then
+if [[ ! $? ]]; then
11
saved_stty=""
12
fi
13
@@ -135,7 +135,7 @@ fi
135
find_lib () {
136
local lib=$(find $PROG_HOME/lib/ -name "$1")
137
if [ -n "$CYGPATHCMD" ]; then
138
- $CYGPATHCMD -am $lib
+ "$CYGPATHCMD" -am $lib
139
elif [[ $mingw || $msys ]]; then
140
echo $lib | sed 's|/|\\\\|g'
141
else
0 commit comments