Skip to content

Commit

Permalink
Fix :cwd thinko from months ago
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
AlexDaniel committed Aug 31, 2024
1 parent 5c74583 commit 2104e7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Whateverable/Builds.pm6
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ sub ensure-cloned-repos is export {
#↓ doing anything.
sub pull-cloned-repos is export {
ensure-cloned-repos;
run :cwd($_), <git pull> with $CONFIG<projects><rakudo-moar><repo-origin>;
run :cwd($_), <git pull> with $CONFIG<projects><moarvm><repo-origin>;
run :cwd($_), <git pull> with $CONFIG<projects><rakudo-moar><repo-path>;
run :cwd($_), <git pull> with $CONFIG<projects><moarvm><repo-path>;
True
}

Expand Down

0 comments on commit 2104e7f

Please sign in to comment.