Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

14 řádky
398 B

před 4 roky
  1. echo "herp";
  2. for dir in `ls node_modules`;
  3. do
  4. echo $dir
  5. if [[ $dir == *"ep_"* ]]; then
  6. if [[ $dir != "ep_etherpad-lite" ]]; then
  7. # node bin/plugins/checkPlugin.js $dir autofix autocommit autoupdate
  8. cd node_modules/$dir
  9. git commit -m "Automatic update: bump update to re-run latest Etherpad tests" --allow-empty
  10. git push origin master
  11. cd ../..
  12. fi
  13. fi
  14. done