We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08555f5 commit bf270d1Copy full SHA for bf270d1
bin/elixir
@@ -80,7 +80,9 @@ done
80
81
SELF=$(readlink_f "$0")
82
SCRIPT_PATH=$(dirname "$SELF")
83
-if [ "$MODE" != "iex" ]; then ERL="$ERL -noshell -s elixir start_cli"; fi
+
84
+if [ "$OSTYPE" = "cygwin" ]; then SCRIPT_PATH=$(cygpath -m $SCRIPT_PATH); fi
85
+if [ "$MODE" != "iex" ]; then ERL="-noshell -s elixir start_cli $ERL"; fi
86
87
if [ -z "$ERL_PATH" ]; then
88
if [ -f "$SCRIPT_PATH/../releases/RELEASES" ] && [ -f "$SCRIPT_PATH/erl" ]; then
0 commit comments