From fe6599b6142906bf92f7dd10068308154de5fb83 Mon Sep 17 00:00:00 2001 From: prplwtf Date: Fri, 21 Jun 2024 17:45:33 +0200 Subject: [PATCH] feat `core`: move console option to "data" --- blueprint.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/blueprint.sh b/blueprint.sh index ac94fe4..5c05151 100644 --- a/blueprint.sh +++ b/blueprint.sh @@ -414,6 +414,7 @@ if [[ ( $2 == "-i" ) || ( $2 == "-install" ) || ( $2 == "-add" ) ]]; then VCMD=" data_directory="$conf_data_directory"; #(optional) data_public="$conf_data_public"; #(optional) + data_console="$conf_data_console"; #(optional) requests_views="$conf_requests_views"; #(optional) requests_controllers="$conf_requests_controllers"; #(optional) @@ -424,8 +425,6 @@ if [[ ( $2 == "-i" ) || ( $2 == "-install" ) || ( $2 == "-add" ) ]]; then VCMD=" database_migrations="$conf_database_migrations"; #(optional) - console_artisan="$conf_console_artisan"; #(optional) - # assign config aliases if [[ $requests_routers_application == "" ]] \ @@ -1470,6 +1469,7 @@ if [[ ( $2 == "-r" ) || ( $2 == "-remove" ) ]]; then VCMD="y" data_directory="$conf_data_directory"; #(optional) data_public="$conf_data_public"; #(optional) + data_console="$conf_data_console"; #(optional) requests_views="$conf_requests_views"; #(optional) requests_controllers="$conf_requests_controllers"; #(optional) @@ -1479,8 +1479,6 @@ if [[ ( $2 == "-r" ) || ( $2 == "-remove" ) ]]; then VCMD="y" requests_routers_web="$conf_requests_routers_web"; #(optional) database_migrations="$conf_database_migrations"; #(optional) - - console_artisan="$conf_console_artisan"; #(optional) else PRINT FATAL "Extension configuration file not found or detected." exit 1