mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-12 04:40:25 +01:00
9 lines
204 B
Bash
Executable file
9 lines
204 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
for dir in node_modules/ep_*; do
|
|
dir=${dir#node_modules/}
|
|
[ "$dir" != ep_etherpad-lite ] || continue
|
|
node src/bin/plugins/checkPlugin.js "$dir" autofix autocommit autoupdate
|
|
done
|