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); +