From: Hauke Mehrtens Date: Sun, 9 Jan 2011 15:32:21 +0000 (+0100) Subject: compat-wireless: do not write git-clone X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=8db160877924ffc8cf0276fba1964a868cc97d46;p=openwrt%2Fstaging%2Fblogic.git compat-wireless: do not write git-clone the command git-clone was removed and git clone should be used now. Update error message. Signed-off-by: Hauke Mehrtens --- diff --git a/scripts/admin-update.sh b/scripts/admin-update.sh index bf8e08031a07..650c48995ba7 100755 --- a/scripts/admin-update.sh +++ b/scripts/admin-update.sh @@ -191,7 +191,7 @@ if [ -z $GIT_TREE ]; then echo " export GIT_TREE=/home/$USER/linux-next/" echo echo "If you do not have one you can clone the repository:" - echo " git-clone $GIT_URL" + echo " git clone $GIT_URL" exit 1 fi else @@ -207,7 +207,7 @@ if [ -z $GIT_COMPAT_TREE ]; then echo " export GIT_COMPAT_TREE=/home/$USER/compat/" echo echo "If you do not have one you can clone the repository:" - echo " git-clone $GIT_COMPAT_URL" + echo " git clone $GIT_COMPAT_URL" exit 1 fi else