Skip to content

Commit

Permalink
prepare 0.1.4, disable in-dev code path
Browse files Browse the repository at this point in the history
  • Loading branch information
archi committed Jul 19, 2020
1 parent 18f03e0 commit e01e934
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/lib/Driver.pm
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,12 @@ sub doEverything {
return 0;
}

my $layout_js = $self->{output_dir}."layout.js";
if (not Layouter::generate($layout_js, $data)) {
logError("Could not generate '$layout_js'");
return 0;
}
# disable for 0.1.4
#my $layout_js = $self->{output_dir}."layout.js";
#if (not Layouter::generate($layout_js, $data)) {
# logError("Could not generate '$layout_js'");
# return 0;
#}

foreach my $file ("dsp.html", "dark.css") {
copy($main::assets_path . $Tools::sep . $file, $self->{output_dir}.$file) or logError("Could not copy '$file': $!\n");
Expand Down

0 comments on commit e01e934

Please sign in to comment.