pad.libre-service.eu-etherpad/bin/plugins/updateCorePlugins.sh
2024-03-16 20:38:05 +01:00

9 lines
169 B
Bash
Executable file

#!/bin/sh
set -e
for dir in node_modules/ep_*; do
dir=${dir#node_modules/}
[ "$dir" != ep_etherpad-lite ] || continue
pnpm run checkPlugins "$dir" autopush
done