Skip to content

Instantly share code, notes, and snippets.

@johantell
Created November 18, 2018 18:05
Show Gist options
  • Save johantell/b109d1abb9b7a6cb53835c5e5515c5db to your computer and use it in GitHub Desktop.
Save johantell/b109d1abb9b7a6cb53835c5e5515c5db to your computer and use it in GitHub Desktop.
Script to get the current version from an elixir mix file without the need for elixir
#!/bin/sh
set -e
root=$(cd "$(dirname "$0")/.." && pwd)/
cat "$root/mix.exs" | grep version | sed -e 's/.*version: "\(.*\)",/\1/'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment