summaryrefslogtreecommitdiff
path: root/.local/bin/development/gh-clone-all
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/development/gh-clone-all')
-rwxr-xr-x.local/bin/development/gh-clone-all2
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/development/gh-clone-all b/.local/bin/development/gh-clone-all
index d2b3cdc..fed6efe 100755
--- a/.local/bin/development/gh-clone-all
+++ b/.local/bin/development/gh-clone-all
@@ -12,5 +12,5 @@ while [ "$page" -lt "$max" ]; do
page=$(( page + 1 ))
curl "https://api.github.com/$cntx/$name/repos?page=$page&per_page=100" |
sed -E '/^\s*"clone_url": "(.*)",$/!d; s//\1/' |
- xargs -L1 echo git clone
+ xargs -L1 git clone
done