Skip to content

Commit 2104e7f

Browse files
committed
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).
1 parent 5c74583 commit 2104e7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Whateverable/Builds.pm6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ sub ensure-cloned-repos is export {
4545
#↓ doing anything.
4646
sub pull-cloned-repos is export {
4747
ensure-cloned-repos;
48-
run :cwd($_), <git pull> with $CONFIG<projects><rakudo-moar><repo-origin>;
49-
run :cwd($_), <git pull> with $CONFIG<projects><moarvm><repo-origin>;
48+
run :cwd($_), <git pull> with $CONFIG<projects><rakudo-moar><repo-path>;
49+
run :cwd($_), <git pull> with $CONFIG<projects><moarvm><repo-path>;
5050
True
5151
}
5252

0 commit comments

Comments
 (0)