From: Daniel Golle Date: Tue, 20 Nov 2012 11:42:35 +0000 (+0000) Subject: properly support git in build/i18n-init.sh X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=8da6c1a49f2ab91d8816a41df0ce5cacb5b9f084;p=project%2Fluci.git properly support git in build/i18n-init.sh --- 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