From 291baad96b6c895e7f5e40ddc86ca089f070fddf Mon Sep 17 00:00:00 2001 From: Pierre de La Morinerie Date: Mon, 3 Sep 2018 14:05:35 +0200 Subject: [PATCH] update: don't restart the server The server is typically started using `overmind start`: better to handle the update and the startup separately. --- bin/update | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/update b/bin/update index 3698a4b42..34bd0bdcd 100755 --- a/bin/update +++ b/bin/update @@ -24,6 +24,6 @@ chdir APP_ROOT do puts "\n== Removing old logs ==" system! 'bin/rails log:clear' - puts "\n== Restarting application server ==" - system! 'bin/rails restart' + puts "\n== Done ==" + puts "You can now start (or restart) the application server with `overmind start`." end