Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

14 rader
398 B

4 år sedan
  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