You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
200 B

4 years ago
  1. #!/bin/sh
  2. set -e
  3. for dir in node_modules/ep_*; do
  4. dir=${dir#node_modules/}
  5. [ "$dir" != ep_etherpad-lite ] || continue
  6. node bin/plugins/checkPlugin.js "$dir" autofix autocommit autoupdate
  7. done