From a154d8e02e46af7bb57740784f5e8c7538ebe7f7 Mon Sep 17 00:00:00 2001 From: Georg Date: Fri, 1 Nov 2019 06:55:57 +0200 Subject: [PATCH] fix introduced typos (#1396) fix typos introduced in #1352 --- bin/setup | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bin/setup b/bin/setup index ea95b5dc2b..fdf4596e73 100755 --- a/bin/setup +++ b/bin/setup @@ -25,8 +25,9 @@ Dir.chdir APP_ROOT do system! 'bin/rake db:setup' puts "\n== Removing old logs and tempfiles ==" - system! 'bin/rails log:clear tmp:clear' + system! 'bin/rake log:clear tmp:clear' puts "\n== Restarting application server ==" - system! 'bin/rails restart' + system! 'touch tmp/restart.txt' + end