Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

14 righe
398 B

4 anni fa
  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