Skip to content

Commit 2ae2b88

Browse files
author
José Valim
committed
Fix mix executable
1 parent b3d2037 commit 2ae2b88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/mix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ SELF=$(readlink_f "$0")
1313
SCRIPT_PATH=$(dirname "$SELF")
1414
ERL_OPTS=""
1515

16-
if [ "$1" == "iex" ]; then ERL_OPTS="-user Elixir-IEx-CLI -iex wait true"; fi
16+
if [ "$1" = "iex" ]; then ERL_OPTS="-user Elixir-IEx-CLI -iex wait true"; fi
1717
exec "$SCRIPT_PATH"/elixir --erl "$ERL_OPTS" -e "Mix.start; Mix.CLI.run" -- "$@"

0 commit comments

Comments
 (0)