Run NC Connector runtime through bash

This commit is contained in:
Terranom674
2026-08-17 12:19:19 +02:00
parent 295b52ff2c
commit ac52df63e9

View File

@@ -14,7 +14,7 @@ fi
result=0
for config in "${configs[@]}"; do
echo "NC Connector: $(basename "$config")"
if ! env PIWIGO_CONFIG="$config" "$SCRIPT_DIR/sync.sh"; then
if ! env PIWIGO_CONFIG="$config" bash "$SCRIPT_DIR/sync.sh"; then
result=1
fi
done