diff --git a/README b/README index 53d2794..0e058d2 100644 --- a/README +++ b/README @@ -28,7 +28,7 @@ sudo chgrp www-data HTMLPurifier/DefinitionCache/Serializer ### Manually Compile the framework!!! ``` cd /var/www/frames/tts_framework/src -php compiler.php +php -f compiler.php -- -dev ``` ### Install JavaScript Lib: @@ -45,7 +45,7 @@ gulp ## So, gulp should just work if installed in the above steps. ``` cd /var/www/frames/tts_framework -gulp +gulp --dev ``` ### Install sample project: diff --git a/src/compiler.php b/src/compiler.php index 83c7aff..fe2803d 100644 --- a/src/compiler.php +++ b/src/compiler.php @@ -37,19 +37,19 @@ foreach($argv as $arg) { $print_new_line = false; $skip_mocking_data_arrays = true; $skip_extras_folder = true; - echo "Prod mode on"; + echo "Prod mode: on. "; } if ($arg === "-dev" || $arg === "--dev") { $debugging_AKA_non_production_mode = true; $print_new_line = true; $skip_mocking_data_arrays = false; $skip_extras_folder = false; - echo "Dev mode on"; + echo "Dev mode: on. "; } if ($arg === "-authors" || $arg === "--authors") { $show_authors = false; $show_filename_comments = false; - echo "Skipping Comments/Authors..."; + echo "Skipping Comments/Authors... "; } }