diff --git a/blueprint.sh b/blueprint.sh index 41af51d..e6249c9 100644 --- a/blueprint.sh +++ b/blueprint.sh @@ -248,8 +248,8 @@ if [[ $1 != "-bash" ]]; then # Clear view cache. log_bright "[INFO] Clearing view cache.." - php artisan view:clear - php artisan config:clear + php artisan view:clear &> /dev/null + php artisan config:clear &> /dev/null # Link filesystems. log_bright "[INFO] Linking filesystems.." diff --git a/blueprint/lib/bash_colors.sh b/blueprint/lib/bash_colors.sh index 46234ef..8a98027 100644 --- a/blueprint/lib/bash_colors.sh +++ b/blueprint/lib/bash_colors.sh @@ -108,7 +108,7 @@ function log_escape done echo "$log_ECHOSWITCHES" "$result" - echo "$log_ECHOSWITCHES" "$result" >> .blueprint/extensions/blueprint/private/debug/logs.txt; + eval ("echo \"$log_ECHOSWITCHES\" \"$result\" >> .blueprint/extensions/blueprint/private/debug/logs.txt") &> /dev/null; echo -e "\n" >> .blueprint/extensions/blueprint/private/debug/logs.txt; }