From 5f9010591de7008eda720b7bcd12f9133bec24be Mon Sep 17 00:00:00 2001 From: Enrico Stano Date: Thu, 15 Feb 2018 20:01:06 +0100 Subject: [PATCH] Fix deploy staging --- Capfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Capfile b/Capfile index 908a94efd..da85f9d98 100644 --- a/Capfile +++ b/Capfile @@ -18,7 +18,7 @@ require 'capistrano/deploy' require 'capistrano/rails' stage = ARGV.first -if stage == :staging # Sorry, production is not ready yet +if stage == 'staging' # Sorry, production is not ready yet require 'capistrano/rbenv' end