Fix build variant environment variable handling

This commit is contained in:
2026-06-09 21:21:17 +02:00
parent 6042b2a145
commit 8fc755372f
3 changed files with 56 additions and 44 deletions

View File

@ -51,7 +51,7 @@ sub date_now {
sub run {
my @cmd = @_;
say " + @cmd";
say "Running: @cmd";
system(@cmd) == 0
or die "Command failed (exit " . ( $? >> 8 ) . "): @cmd\n";
}