I am looking at Elixir code in a project where the script is running:
elixir -pa _build/<a directory with .beam files> -S mix run -e "MyApp" --no-deps-check --no-compile --no-halt
I wonder what the flag means -pa. I could not find the help page or the help page for the elixir.
$ man elixir
No manual entry for elixir
Is there any online documentation for other command line options for elixir?
source
share