2014-11-28 17:27:12 +01:00
|
|
|
#!/bin/sh
|
2021-06-18 10:28:41 +02:00
|
|
|
set -e
|
|
|
|
mydir=$(cd "${0%/*}" && pwd -P) || exit 1
|
2024-02-21 21:50:11 +01:00
|
|
|
cd "${mydir}"/..
|
2021-06-18 10:28:41 +02:00
|
|
|
OUTDATED=$(npm outdated --depth=0 | awk '{print $1}' | grep '^ep_') || {
|
|
|
|
echo "All plugins are up-to-date"
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
set -- ${OUTDATED}
|
|
|
|
echo "Updating plugins: $*"
|
|
|
|
exec npm install --no-save "$@"
|