Skip to content

Commit

Permalink
break on makefile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sni committed Jan 25, 2025
1 parent bed261e commit 4a8e4e6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,15 @@ my $uname = `uname -s`; chomp($uname);
##################################
# patch our makefile
print `./script/thruk_patch_makefile.pl`;
if($? != 0) {
die("failed to patch makefile");
}

# create combined javascript/css files
print `./script/thruk_create_combined_static_content.pl`;
if($? != 0) {
die("failed to create cached js/css files");
}
print "created cached js/css files\n";

print `test -f themes/themes-available/Light/stylesheets/Light.css || make themes`;
Expand Down

0 comments on commit 4a8e4e6

Please sign in to comment.