Skip to content

Commit

Permalink
Fix mix executable
Browse files Browse the repository at this point in the history
  • Loading branch information
José Valim committed Nov 30, 2012
1 parent b3d2037 commit 2ae2b88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/mix
Expand Up @@ -13,5 +13,5 @@ SELF=$(readlink_f "$0")
SCRIPT_PATH=$(dirname "$SELF")
ERL_OPTS=""

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

0 comments on commit 2ae2b88

Please sign in to comment.