We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a4f290 commit 4d69ef1Copy full SHA for 4d69ef1
changelog.md
@@ -21,6 +21,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
21
22
- Updated to the latest Ubuntu images for the GitHub actions
23
24
+### Fixed
25
+
26
+- Fixed resource handler creation.
27
28
## [7.5.0] - 2024-10-16
29
30
### Fixed
commands/coldbox/create/resource.cfc
@@ -324,7 +324,7 @@ component extends="coldbox-cli.models.BaseCommand" {
324
// Add Resource routes
325
var routerContent = fileRead( routerPath ).replaceNoCase(
326
"// @app_routes@",
327
- routerCode & variables.break
+ routerCode & chr( 13 )
328
);
329
fileWrite( routerPath, routerContent );
330
openPath( routerPath );
0 commit comments