Skip to content

Commit

Permalink
Make install.sh useful for non-Docker installations (#2210)
Browse files Browse the repository at this point in the history
  • Loading branch information
zackgalbreath committed May 16, 2024
1 parent 3a531ce commit 85a8f0a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ exit 1

trap error_handler ERR

# Temporarily change to /cdash
pushd "/cdash" > /dev/null
# Temporarily change to the root of the CDash source tree.
SCRIPT_DIR=$(dirname "$0")
pushd "$SCRIPT_DIR" > /dev/null

echo "Enabling maintenance mode..."
php artisan down --render="maintenance" --refresh=5
Expand Down

0 comments on commit 85a8f0a

Please sign in to comment.