checkPlugin: Make autocommit imply autoupdate, autoupdate imply autofix

This commit is contained in:
Richard Hansen 2021-01-10 18:35:50 -05:00 committed by John McLear
parent 27df9df47f
commit 039c50de80
2 changed files with 11 additions and 19 deletions

View file

@ -24,7 +24,7 @@ node bin/plugins/checkPlugin.js ep_whatever autofix
## Autocommitting, push, npm minor patch and npm publish (highly dangerous)
```
node bin/plugins/checkPlugin.js ep_whatever autofix autocommit
node bin/plugins/checkPlugin.js ep_whatever autocommit
```
# All the plugins
@ -41,7 +41,7 @@ cd ..
for dir in node_modules/ep_*; do
dir=${dir#node_modules/}
[ "$dir" != ep_etherpad-lite ] || continue
node bin/plugins/checkPlugin.js "$dir" autofix autocommit
node bin/plugins/checkPlugin.js "$dir" autocommit
done
```