From 206d6619a511292f62cb13da5d2fb6268127553c Mon Sep 17 00:00:00 2001 From: Justin Coyne Date: Mon, 6 Nov 2023 07:16:15 -0600 Subject: [PATCH] Unlock the capfile Currently this won't deploy and gives the message: ``` Capfile locked at ~> 3.17.1, but 3.18.0 is loaded ``` We do not use the lock function in other projects to avoid this problem. --- config/deploy.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/deploy.rb b/config/deploy.rb index 0d512775..1a2b3ef3 100644 --- a/config/deploy.rb +++ b/config/deploy.rb @@ -1,5 +1,5 @@ # config valid for current version and patch releases of Capistrano -lock "~> 3.17.1" +# lock "~> 3.17.1" set :application, "dlme" set :repo_url, "https://github.com/sul-dlss/dlme.git"