mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-20 22:49:53 +01:00
10 lines
200 B
Bash
10 lines
200 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
for dir in node_modules/ep_*; do
|
||
|
dir=${dir#node_modules/}
|
||
|
[ "$dir" != ep_etherpad-lite ] || continue
|
||
|
node bin/plugins/checkPlugin.js "$dir" autofix autocommit autoupdate
|
||
|
done
|