Fix previous merge.

This commit is contained in:
Valentin Lorentz 2012-01-05 19:52:57 +01:00
parent f6374ed88e
commit eb1e04701d
1 changed files with 1 additions and 4 deletions

View File

@ -1,8 +1,5 @@
#!/usr/bin/env bash
export TZ="/usr/share/zoneinfo/UTC" # Set timezone as UTC for version timestamps to be in UTC.
echo "Updating version..."
perl -pi -e "s/^version\s*=\s*['\"]([\S]+)[ '\"].*/version = '\1 ($( date -Iseconds ))'/" src/version.py
unset TZ # Return to the system timezone.
exec $SHELL # Execute the current shell to return to user timezone if specified in config of shell.
TZ="/usr/share/zoneinfo/UTC" perl -pi -e "s/^version\s*=\s*['\"]([\S]+)[ '\"].*/version = '\1 ($( date -Iseconds ))'/" src/version.py
git add src/version.py
# vim: set ft=sh: syntax: