mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-24 03:29:28 +01:00
11 lines
454 B
Plaintext
11 lines
454 B
Plaintext
|
#!/bin/bash
|
||
|
# Use this script to make commits. It will automatically update the version
|
||
|
# string to have a datetime stamp, prior to committing.
|
||
|
# All arguments get passed to git commit, so of course, use the -a option so that
|
||
|
# the version change gets added to the commit.
|
||
|
echo "Updating version..."
|
||
|
perl -pi -e "s/^version\s*=\s*['\"]([\S]+)[ '\"].*/version = '\1 ($( date -Iseconds ))'/" src/version.py
|
||
|
if [ "$?" -eq "0" ]; then
|
||
|
git commit $@
|
||
|
fi
|