diff --git a/custom/default-cfconfig/compareDefault.cfm b/custom/default-cfconfig/compareDefault.cfm index 5fce39c..1fbb8c7 100644 --- a/custom/default-cfconfig/compareDefault.cfm +++ b/custom/default-cfconfig/compareDefault.cfm @@ -1,8 +1,13 @@ default = deserializeJSON( fileRead( expandPath( "./.CFConfig-default.json" ) ) ); - contextFiles = directoryList( path=Expandpath( "{lucee-config}" ), recurse=true ); cfgPAth = expandPath( '{lucee-config}.CFConfig.json' ); if ( !fileExists( cfgPath ) ){ + systemOutput( "", true ); + systemOutput( "ERROR: missing .CFConfig.json [#cfgPath#]", true ); + systemOutput( "", true ); + + systemOutput( "--------- listing files under {lucee-config} -----------", true ); + contextFiles = directoryList( path=Expandpath( "{lucee-config}" ), recurse=true ); for ( cf in contextFiles ) { systemOutput( cf, true ); }