2020-07-26 14:18:02 +02:00
|
|
|
cd node_modules
|
|
|
|
GHUSER=johnmclear; curl "https://api.github.com/users/$GHUSER/repos?per_page=1000" | grep -o 'git@[^"]*' | grep /ep_ | xargs -L1 git clone
|
|
|
|
GHUSER=johnmclear; curl "https://api.github.com/users/$GHUSER/repos?per_page=1000&page=2" | grep -o 'git@[^"]*' | grep /ep_ | xargs -L1 git clone
|
|
|
|
GHUSER=johnmclear; curl "https://api.github.com/users/$GHUSER/repos?per_page=1000&page=3" | grep -o 'git@[^"]*' | grep /ep_ | xargs -L1 git clone
|
|
|
|
GHUSER=johnmclear; curl "https://api.github.com/users/$GHUSER/repos?per_page=1000&page=4" | grep -o 'git@[^"]*' | grep /ep_ | xargs -L1 git clone
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
for dir in `ls node_modules`;
|
|
|
|
do
|
|
|
|
# echo $0
|
|
|
|
if [[ $dir == *"ep_"* ]]; then
|
|
|
|
if [[ $dir != "ep_etherpad-lite" ]]; then
|
2024-03-16 20:38:00 +01:00
|
|
|
pnpm run checkPlugins $dir autopush
|
2020-07-26 14:18:02 +02:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
# echo $dir
|
|
|
|
done
|