diff options
author | Petko Bordjukov <ignisf@users.noreply.github.com> | 2017-07-25 02:14:01 +0300 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-07-25 01:14:01 +0200 |
commit | c80046a77bce2dd27d60fa22bd7d98b4ea5af331 (patch) | |
tree | fdfb089a41a6c1f437fabf9ca6e5daec0d5d5428 | |
parent | ebf5a060843697d6c51ddfa2f80c1cff1054799e (diff) |
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.
-rw-r--r-- | config/deploy.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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') |