Created
November 13, 2017 11:35
-
-
Save dotmilk/e887e8508a08fe2f8a9b721924bc3c2b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/usr/bin/env bash | |
if ls $(pwd)/mix.exs 1> /dev/null 2>&1; then | |
echo "Distilling..." | |
mix compile && iex -S mix run | |
else | |
echo "No elixir to distill..." | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment