etherpad-lite/src/bin/plugins/updateCorePlugins.sh
2021-12-11 02:01:35 -05:00

9 lines
183 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" autopush
done