Skip to content

Instantly share code, notes, and snippets.

@dotmilk
Created November 13, 2017 11:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dotmilk/e887e8508a08fe2f8a9b721924bc3c2b to your computer and use it in GitHub Desktop.
Save dotmilk/e887e8508a08fe2f8a9b721924bc3c2b to your computer and use it in GitHub Desktop.
#!/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