Skip to content

Commit

Permalink
Operator fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ragnarpa committed Jun 22, 2020
1 parent 9e32107 commit 8a0ca70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist/npm/bin/devspace
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ if [ ! -f "$BINARY" ] || [ "$STAT" -lt 10000 ]; then

CMD_BIN=$(command -v cmd.exe)

if [ -f "$CMD_BIN" ] && [ "${CMD_BIN#/mnt/}" == "${CMD_BIN}" ]; then
if [ -f "$CMD_BIN" ] && [ "${CMD_BIN#/mnt/}" = "${CMD_BIN}" ]; then
$BINDIR/devspace.exe "$@" 2>/dev/null || $BINDIR/../../.bin/devspace.exe "$@" 2>/dev/null || devspace.exe "$@";
else
$BINDIR/devspace "$@" 2>/dev/null|| $BINDIR/../../.bin/devspace "$@" 2>/dev/null || devspace "$@";
Expand Down

0 comments on commit 8a0ca70

Please sign in to comment.