Commit 5cdfc2f4 authored by Vincent Driessen's avatar Vincent Driessen

Add shell script to automatically changes the version number.

parent 463dd443
#!/bin/sh
usage() {
echo "usage: bump-version <version-id>"
}
if [ $# -ne 1 ]; then
usage
exit 1
fi
echo "GITFLOW_VERSION=$1" > gitflow-version
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment