From b9a80a7c004b9ec62bafb514fd574a03e4c1f715 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Fri, 3 Mar 2017 09:47:01 +0000 Subject: [PATCH] Fix the deploy script --- changelog.md | 3 +++ deploy.sh | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 0a7d3b04..f2dbb2b0 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,8 @@ # Changelog +## Version {next} + - Correct command to restart daemon queues in deply.sh + ## Version 0.3 (2017-03-02) - convert env() calls to config() calls for cacheing - refactor routes and give important one names diff --git a/deploy.sh b/deploy.sh index c1eab083..0d7ca306 100755 --- a/deploy.sh +++ b/deploy.sh @@ -11,7 +11,7 @@ php artisan route:cache php artisan config:cache echo "Restarting the queue daemon" -sudo systemctl restart supervisorctl +sudo supervisorctl restart all echo "Bringing the Laravel app back online" php artisan up