Skip to content

Commit

Permalink
Update compareDefault.cfm
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Jun 27, 2024
1 parent 8c6b10a commit 87d3722
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion custom/default-cfconfig/compareDefault.cfm
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
<cfscript>
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 );
}
Expand Down

0 comments on commit 87d3722

Please sign in to comment.