File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed
Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414- New ColdBox ASCII art banner when creating apps and using the app-wizard
1515- Improved readme and help commands
1616- Name question in app-wizard if not provided
17+ - Install ` bx-compat-cfml ` when doing ` --rest ` due to needing some CFML compatibility
1718
1819## [ 8.4.0] - 2025-12-15
1920
Original file line number Diff line number Diff line change @@ -396,6 +396,19 @@ component extends="coldbox-cli.models.BaseCommand" {
396396 newConfig
397397 );
398398
399+ // Get the server.json : server show scripts.onServerInitialInstall so we can append to it and set it back
400+ var originalServerInstall = command ( " server show" )
401+ .params ( property : " scripts.onServerInitialInstall" )
402+ .run ( returnOutput = true )
403+
404+ printInfo ( " 🥊 Original " & originalServerInstall )
405+ // Now call server set to append: ,bx-compat-cfml
406+ command ( " server set" )
407+ .params (
408+ " scripts.onServerInitialInstall" : originalServerInstall & " ,bx-compat-cfml"
409+ )
410+ .run ();
411+
399412 // Install CommandBox Modules
400413 printInfo ( " 🥊 Installing ColdBox API Production Modules: Security, Mementifier, Validation" )
401414 command ( " install" ).params ( " cbsecurity,mementifier,cbvalidation" ).run ();
You can’t perform that action at this time.
0 commit comments