Commit 54603333 authored by mhennecke's avatar mhennecke Committed by Marc Cornellà
Browse files

sublime: fix typo in cygwin path logic (#7304)

Bug introduced in cea941ce
parent a2dab42c
...@@ -42,8 +42,8 @@ elif [[ "$OSTYPE" = darwin* ]]; then ...@@ -42,8 +42,8 @@ elif [[ "$OSTYPE" = darwin* ]]; then
fi fi
done done
elif [[ "$OSTYPE" = 'cygwin' ]]; then elif [[ "$OSTYPE" = 'cygwin' ]]; then
local sublime_cygwin_paths local _sublime_cygwin_paths
sublime_cygwin_paths=( _sublime_cygwin_paths=(
"$(cygpath $ProgramW6432/Sublime\ Text\ 2)/sublime_text.exe" "$(cygpath $ProgramW6432/Sublime\ Text\ 2)/sublime_text.exe"
"$(cygpath $ProgramW6432/Sublime\ Text\ 3)/sublime_text.exe" "$(cygpath $ProgramW6432/Sublime\ Text\ 3)/sublime_text.exe"
) )
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment