File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -386,18 +386,19 @@ component extends="coldbox-cli.models.BaseCommand" {
386386 var newConfig = fileRead ( arguments .directory & " app/config/Coldbox.bx" )
387387 .replace ( " Main.index" , " Echo.index" )
388388 .replace ( " Main.onException" , " Echo.onError" );
389- fileWrite ( arguments .directory & " app/config/Coldbox.bx" , newConfig );
389+ fileWrite (
390+ arguments .directory & " app/config/Coldbox.bx" ,
391+ newConfig
392+ );
390393
391394 // Install CommandBox Modules
392395 printInfo ( " 🥊 Installing ColdBox API Production Modules: Security, Mementifier, Validation" )
393396 command ( " install" ).params ( " cbsecurity,mementifier,cbvalidation" ).run ();
394397
395398 printInfo ( " 🥊 Installing ColdBox API Development Modules: route-visualizer,relax" )
396399 command ( " install" )
397- .params (
398- " route-visualizer,relax" ,
399- )
400- .flags ( ' saveDev' )
400+ .params ( " route-visualizer,relax" )
401+ .flags ( " saveDev" )
401402 .run ();
402403
403404 printSuccess ( " ✅ REST API setup complete!" )
You can’t perform that action at this time.
0 commit comments