Skip to content

Commit 9fa1c3f

Browse files
committed
Fix build error saving json file
1 parent 627f0df commit 9fa1c3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Build.rakumod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ method build($cwd --> Bool) {
3030
}
3131

3232
my $json = to-json(%libraries, :pretty, :sorted-keys);
33-
$*PROGRAM.child("resources/libraries.json").spurt: $json;
33+
"resources/libraries.json".IO.spurt: $json;
3434

3535
# DO NOT COPY THIS SOLUTION
3636
# Delete precomp files when building in case the openssl libs have since been updated

0 commit comments

Comments
 (0)