From 87ca059f320f0bcdd4c76d8981d052046f5accbf Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 8 Jan 2023 14:07:08 +0100 Subject: [PATCH] Fix dangling parenthesis --- lib/tasks/mrsk/mrsk.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/mrsk/mrsk.rake b/lib/tasks/mrsk/mrsk.rake index 67f99d0b..f8359b01 100644 --- a/lib/tasks/mrsk/mrsk.rake +++ b/lib/tasks/mrsk/mrsk.rake @@ -18,6 +18,6 @@ namespace :mrsk do require "fileutils" FileUtils.cp_r \ Pathname.new(File.expand_path("templates/deploy.yml", __dir__)), - Rails.root.join("config/deploy.yml")) + Rails.root.join("config/deploy.yml") end end