Created
November 18, 2018 18:05
-
-
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
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
#!/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