5 lines
121 B
Plaintext
5 lines
121 B
Plaintext
|
#!/bin/sh -eu
|
||
|
sed -i Makefile -e "s/^VERSION=${1}/VERSION=${2}/"
|
||
|
git add Makefile
|
||
|
git commit -m "Update version to ${2}"
|