Skip to content

Commit

Permalink
use the new path to the yii script in run-idp.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
briskt committed May 22, 2024
1 parent cc8413d commit 3366b81
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dockerbuild/run-idp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

# Try to run database migrations
cd /data/vendor/simplesamlphp/simplesamlphp/modules/silauth
chmod a+x ./src/yii
chmod a+x ./lib/Auth/Source/yii

output=$(./src/yii migrate --interactive=0 2>&1)
output=$(./lib/Auth/Source/yii migrate --interactive=0 2>&1)

# If they failed, exit.
rc=$?;
Expand All @@ -14,4 +14,4 @@ if [[ $rc != 0 ]]; then
fi

cd /data
./run.sh
./run.sh

0 comments on commit 3366b81

Please sign in to comment.