From 3221cf27325850b89e7435bfe157324b7c63df17 Mon Sep 17 00:00:00 2001 From: Pierre Date: Sun, 29 Apr 2018 21:00:24 +0200 Subject: [PATCH] Update build script --- build | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/build b/build index b34a4b69..8a0ba181 100755 --- a/build +++ b/build @@ -10,6 +10,13 @@ //Defines some utilities +/** + * Display a message on the screen + * + * @param string $message The message to display on the screen + * @param bool $new_section Specify whether the message refers to a + * new build section or not + */ function notice(string $message, bool $new_section = false) { echo ($new_section ? "\n\n" : "").$message,"\n"; } @@ -192,4 +199,9 @@ RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . index.php [L] '; -file_put_contents($output.".htaccess", $htaccess); \ No newline at end of file +file_put_contents($output.".htaccess", $htaccess); + + +//Done +notice("Done.", TRUE); +