mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 21:39:48 +01:00
sublime: fix typo in cygwin path logic (#7304)
Bug introduced in cea941ce42
This commit is contained in:
parent
a2dab42c35
commit
5460333363
1 changed files with 2 additions and 2 deletions
|
@ -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"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue