From c80046a77bce2dd27d60fa22bd7d98b4ea5af331 Mon Sep 17 00:00:00 2001 From: Petko Bordjukov Date: Tue, 25 Jul 2017 02:14:01 +0300 Subject: [PATCH] Update Capistrano lock version in config/deploy.rb (#4352) Deployment with Capistrano was failing due to a mismatch between the loaded version of Capistrano and the one specified in the deployment configuration. Bumping the version in config/deploy.rb fixes this issue. --- config/deploy.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/deploy.rb b/config/deploy.rb index 0f3511485..33b88b109 100644 --- a/config/deploy.rb +++ b/config/deploy.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -lock '3.8.1' +lock '3.8.2' set :repo_url, ENV.fetch('REPO', 'https://github.com/tootsuite/mastodon.git') set :branch, ENV.fetch('BRANCH', 'master')