Skip to content

Commit

Permalink
scss-compiler: use non-zero exit code on Exception (#5287)
Browse files Browse the repository at this point in the history
  • Loading branch information
staabm committed Aug 4, 2022
1 parent a612613 commit 4465a7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redaxo/src/addons/be_style/lib/scss_compiler.php
Expand Up @@ -100,7 +100,7 @@ public function compile()
} catch (Exception $e) {
// here we could put the exception message, but who cares ...
echo $e->getMessage();
exit();
exit(1);
}
}
}

0 comments on commit 4465a7b

Please sign in to comment.