From 6ac936ce0f68db38d63d7138ae7175b625819403 Mon Sep 17 00:00:00 2001 From: Thomas von Deyen Date: Thu, 29 Aug 2024 13:02:20 +0200 Subject: [PATCH] Fix testing locally The file lives in tasks and the projects are in the root folder. --- tasks/testing.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/testing.rake b/tasks/testing.rake index 3d8eca98b26..7dee5cbb90a 100644 --- a/tasks/testing.rake +++ b/tasks/testing.rake @@ -11,7 +11,7 @@ def subproject_task(project, task, title: project, task_name: nil) task_name ||= "#{task}:#{project}" task task_name do print_title(title) - Dir.chdir("#{File.dirname(__FILE__)}/#{project}") do + Dir.chdir(project) do sh "rake #{task}" end end