Fail gracefully when not running in a git environment.
This commit is contained in:
parent
497c60375c
commit
be64bd883c
|
@ -1,5 +1,14 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
if ! which git > /dev/null 2>&1 ;then
|
||||||
|
echo "Cannot find git executable, not bumping js versions."
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
if ! git status > /dev/null 2>&1 ;then
|
||||||
|
echo "Not a git repository, not bumping js versions."
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
# This script finds all js files included from index.html which have been
|
# This script finds all js files included from index.html which have been
|
||||||
# modified and bumps their version (the value of the "v" parameter used
|
# modified and bumps their version (the value of the "v" parameter used
|
||||||
# in index.html)
|
# in index.html)
|
||||||
|
|
Loading…
Reference in New Issue