From 2104e7f0e2b3805140d6f0fbb4a44306c23889d7 Mon Sep 17 00:00:00 2001 From: Aleks-Daniel Jakimenko-Aleksejev Date: Sun, 1 Sep 2024 00:30:28 +0300 Subject: [PATCH] Fix `:cwd` thinko from months ago I'm not entirely sure how this is working in the currently running bots, but this is definitely causing issues in Blin. Basically, when the directory structure was changed, I changed these lines incorrectly. As the result, when running this sub, it was trying to `:cwd` into the URL of the repo (which is obviously wrong). --- lib/Whateverable/Builds.pm6 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Whateverable/Builds.pm6 b/lib/Whateverable/Builds.pm6 index 6150bb3..bc8546a 100644 --- a/lib/Whateverable/Builds.pm6 +++ b/lib/Whateverable/Builds.pm6 @@ -45,8 +45,8 @@ sub ensure-cloned-repos is export { #↓ doing anything. sub pull-cloned-repos is export { ensure-cloned-repos; - run :cwd($_), with $CONFIG; - run :cwd($_), with $CONFIG; + run :cwd($_), with $CONFIG; + run :cwd($_), with $CONFIG; True }