Skip to content

Commit c7212b9

Browse files
committed
fix merge conflict: dist/bin/common line 138
1 parent 3984c3a commit c7212b9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dist/bin/common

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,9 @@ fi
134134

135135
find_lib () {
136136
local lib=$(find $PROG_HOME/lib/ -name "$1")
137-
if [ -n "${CYGPATHCMD-}" ]; then
138-
$CYGPATHCMD -am $lib
139-
elif [[ ${mingw-} || ${msys-} ]]; then
137+
if [ -n "$CYGPATHCMD" ]; then
138+
"$CYGPATHCMD" -am $lib
139+
elif [[ $mingw || $msys ]]; then
140140
echo $lib | sed 's|/|\\\\|g'
141141
else
142142
echo $lib

0 commit comments

Comments
 (0)