Skip to content

Commit

Permalink
fix package names
Browse files Browse the repository at this point in the history
  • Loading branch information
jclausen committed Dec 20, 2024
1 parent 551e9f1 commit 8f4d49e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 27 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
fail-fast: false
matrix:
cfengine: [ "lucee@5", "adobe@2018", "adobe@2021", "adobe@2023" ]
cfengine: [ "lucee@5", "adobe@2021", "adobe@2023" ]
coldboxVersion: [ "^6.0.0", "^7.0.0" ]
experimental: [ false ]
# Here we tests all engines against ColdBox@BE
Expand Down
23 changes: 0 additions & 23 deletions [email protected]

This file was deleted.

2 changes: 1 addition & 1 deletion [email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
"file" : ".cfconfig.json"
},
"scripts" : {
"onServerInstall":"cfpm install zip,debugger,postgres"
"onServerInstall":"cfpm install zip,debugger,postgresql"
}
}
2 changes: 1 addition & 1 deletion [email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
"file" : ".cfconfig.json"
},
"scripts" : {
"onServerInstall":"cfpm install zip,debugger,postgres"
"onServerInstall":"cfpm install zip,debugger,postgresql"
}
}
6 changes: 5 additions & 1 deletion test-harness/config/Coldbox.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,11 @@
);

// Reload the renderer in case we have module helpers
controller.getRenderer().startup()
try{
controller.getRenderer().startup();
} catch( any e ){
// this is coldbox 6
}
// Reload all interceptors with new mixins if available.
controller.getInterceptorService().announce( "cbLoadInterceptorHelpers" )
}
Expand Down

0 comments on commit 8f4d49e

Please sign in to comment.