docker-icingaweb2/composer.bash
2020-07-03 16:03:49 +02:00

13 lines
187 B
Bash
Executable File

#!/bin/bash
set -exo pipefail
for d in icingaweb2 icingaweb2/modules/*; do
pushd "$d"
if [ -e composer.json ]; then
composer install --no-dev --ignore-platform-reqs
fi
popd
done