-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The latest Elixir changed how IEx should be started. The current way we're using is `IEx.start` which is still around in 1.17 but only arity 0. So if you include any shell_opts, the IEx session would immediately crash. If you don't use shell_opts, then things will work as normal. This makes the needed adjustments to work with Elixir 1.17 and support shell_opts, including a change to account for .iex.exs files in the arguments
- Loading branch information
1 parent
15938db
commit ff7323e
Showing
3 changed files
with
49 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters