diff options
author | Daniel Golle <daniel@makrotopia.org> | 2012-11-20 11:42:35 +0000 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2012-11-20 11:42:35 +0000 |
commit | 8da6c1a49f2ab91d8816a41df0ce5cacb5b9f084 (patch) | |
tree | 6a77ef6855c122f58277b02e83ee32b9bb092738 | |
parent | d0f777f5f15c538621decd42eb5dde19668a65f3 (diff) |
properly support git in build/i18n-init.sh
-rwxr-xr-x | build/i18n-init.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/i18n-init.sh b/build/i18n-init.sh index 9a206bb2a..b20fbc334 100755 --- a/build/i18n-init.sh +++ b/build/i18n-init.sh @@ -4,7 +4,8 @@ PATTERN=$1 SCM= [ -d .svn ] && SCM="svn" -[ -d .git ] && SCM="git" +git=$( which git 2>/dev/null ) +[ "$git" ] && "$git" status >/dev/null && SCM="git" [ -z "$SCM" ] && { echo "Unsupported SCM tool" >&2 |