#!/bin/bash
# Fix corrupted RedmineService.php in portal
set -e
PORTAL=/var/www/html/portal
cp "$PORTAL/storage/app/RedmineService_fixed.php" \
   "$PORTAL/app/Services/RedmineService.php"
chown www-data:www-data "$PORTAL/app/Services/RedmineService.php"
php -l "$PORTAL/app/Services/RedmineService.php" && echo "Syntax OK"
echo "Fixed."
