mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-23 00:46:16 -04:00
14 lines
381 B
Bash
Executable file
14 lines
381 B
Bash
Executable file
echo "herp";
|
|
for dir in `ls node_modules`;
|
|
do
|
|
echo $dir
|
|
if [[ $dir == *"ep_"* ]]; then
|
|
if [[ $dir != "ep_etherpad-lite" ]]; then
|
|
# node src/bin/plugins/checkPlugin.js $dir autopush
|
|
cd node_modules/$dir
|
|
git commit -m "Automatic update: bump update to re-run latest Etherpad tests" --allow-empty
|
|
git push origin master
|
|
cd ../..
|
|
fi
|
|
fi
|
|
done
|