sandbox/update-version: bash isn't always in /bin.

On some systems, bash is in some different folder
than /bin. It works with more systems to use
/usr/bin/env bash.
This commit is contained in:
Mika Suomalainen 2012-01-05 15:37:36 +02:00
parent b7b3235ff4
commit 26e9671003

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
echo "Updating version..."
perl -pi -e "s/^version\s*=\s*['\"]([\S]+)[ '\"].*/version = '\1 ($( date -Iseconds ))'/" src/version.py
git add src/version.py