Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix "command not found: elsif" error #77

Merged
merged 1 commit into from
Mar 5, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(executable): fix "command not found: elsif" error
fix #76
  • Loading branch information
jletey committed Mar 5, 2019
commit 4fa07f65b4d9d9cc2519d3ef368a7b82fb04ebf9
1 change: 0 additions & 1 deletion executable/Env.re
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ let rec printUseOnCd = (~shell) =>
if [[ -f .node-version && -r .node-version ]]; then
echo "fnm: Found .node-version"
fnm use
elsif
jletey marked this conversation as resolved.
Show resolved Hide resolved
elif [[ -f .nvmrc && -r .nvmrc ]]; then
echo "fnm: Found .nvmrc"
fnm use
Expand Down