Skip to content

Commit f170b7b

Browse files
committed
Also overcompress MoarVM builds
1 parent 0532012 commit f170b7b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

maintenance/long-term-storage.p6

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ use File::Directory::Tree;
1919

2020
my \WORKING-DIRECTORY = .; # TODO not supported yet
2121
enum Project <Rakudo-Moar Rakudo-JVM Rakudo-JS MoarVM>;
22-
my \PROJECT = Rakudo-Moar;
22+
my \PROJECT = do given @*ARGS[0] // {
23+
when /:i ^‘moarvm’$ / { MoarVM }
24+
default { Rakudo-Moar }
25+
}
2326
my \DIR-BASE = PROJECT.lc;
2427
my \BUILDS-LOCATION = /tmp/whateverable/{DIR-BASE};
2528
my \ARCHIVES-LOCATION = {WORKING-DIRECTORY}/builds/{DIR-BASE}.IO.absolute;

0 commit comments

Comments
 (0)