Skip to content

Commit

Permalink
Update apache/helpers.php
Browse files Browse the repository at this point in the history
Co-authored-by: William Desportes <[email protected]>
  • Loading branch information
LordRobinCbz and williamdes authored Dec 21, 2024
1 parent a245719 commit 76f4def
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apache/helpers.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ function decodeAndSaveSslFiles($base64_string, $prefix, $extension) {

// Write the decoded file to the output directory
if (file_put_contents($output_file, base64_decode($file)) === false) {
throw new SslFileGenerationException("Failed to write to $output_file");
echo 'Failed to write to ' . $output_file;
exit(1);
}

// Add the output file path to the list
Expand Down

0 comments on commit 76f4def

Please sign in to comment.