summaryrefslogtreecommitdiff
path: root/scripts/feeds
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2008-08-24 13:40:21 +0000
committerFelix Fietkau <nbd@openwrt.org>2008-08-24 13:40:21 +0000
commit2311fc9850b95a9778c7504837aae12c53080a91 (patch)
tree0de272feb47057128c9cf9804aaf63212eeae210 /scripts/feeds
parent62333dabe1991261a58fe127844f1f152d242d7f (diff)
downloadmtk-20170518-2311fc9850b95a9778c7504837aae12c53080a91.zip
mtk-20170518-2311fc9850b95a9778c7504837aae12c53080a91.tar.gz
mtk-20170518-2311fc9850b95a9778c7504837aae12c53080a91.tar.bz2
replace the deprecated git-* command calls with git *
SVN-Revision: 12379
Diffstat (limited to 'scripts/feeds')
-rwxr-xr-xscripts/feeds2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/feeds b/scripts/feeds
index ee2f108..8e18855 100755
--- a/scripts/feeds
+++ b/scripts/feeds
@@ -102,7 +102,7 @@ sub update_git($$) {
system("GIT_DIR=./feeds/$name/.git git pull") == 0 or return 1;
} else {
system("rm -rf \"./feeds/$name\"");
- system("git-clone --depth 1 $src ./feeds/$name") == 0 or return 1;
+ system("git clone --depth 1 $src ./feeds/$name") == 0 or return 1;
}
return 0;