Skip to content

Commit

Permalink
Tentative fix for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
melmothx committed Jan 30, 2024
1 parent fca82eb commit 11a15db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/AmuseWikiFarm/Schema/Result/Bookcover.pm
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ sub compose_preamble {
my $final = Text::Amuse::Compile::Fonts::Selected->new(
all_fonts => $self->fonts,
size => 12,
luatex => 1,
luatex => 0,
main => $selected,
mono => $selected,
sans => $selected,
Expand Down Expand Up @@ -614,7 +614,7 @@ sub produce_pdf {
chdir $wd or die "Cannot chdir into $wd";

my ($in, $out, $err);
my @run = ("lualatex", '-interaction=nonstopmode', $tex->basename);
my @run = ("xelatex", '-interaction=nonstopmode', $tex->basename);
my $ok = run \@run, \$in, \$out, \$err;
chdir $cwd or die "Cannot chdir back into $cwd";
# log_info { "Compilation: $out $err" };
Expand Down

0 comments on commit 11a15db

Please sign in to comment.