Skip to content

Commit 12f48a0

Browse files
committed
Merge branch 'development'
2 parents 53f76a9 + 566364c commit 12f48a0

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

box.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"ColdBox CLI",
3-
"version":"7.2.0",
3+
"version":"7.2.1",
44
"location":"https://downloads.ortussolutions.com/ortussolutions/commandbox-modules/coldbox-cli/@build.version@/coldbox-cli-@build.version@.zip",
55
"slug":"coldbox-cli",
66
"author":"Ortus Solutions, Corp",
@@ -29,7 +29,7 @@
2929
},
3030
"dependencies":{
3131
"commandbox-migrations":"^5.0.0",
32-
"testbox-cli":"^1.0.0"
32+
"testbox-cli":"^1.0.0"
3333
},
3434
"installPaths":{},
3535
"ignore":[

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [Unreleased]
1111

12+
### Fixed
13+
14+
- Fixed `coldbox create layout` failing due to unescpaed `#view()#` command
15+
1216
## [7.2.0] - 2023-05-18
1317

1418
### Added

commands/coldbox/create/layout.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ component extends="coldbox-cli.models.BaseCommand" {
4040
savecontent variable="local.layoutContent" {
4141
writeOutput( "<cfoutput>#variables.utility.BREAK#" )
4242
writeOutput( arguments.content )
43-
writeOutput( "<div>#view()#</div>#variables.utility.BREAK#" )
43+
writeOutput( "<div>##view()##</div>#variables.utility.BREAK#" )
4444
writeOutput( "</cfoutput>" )
4545
};
4646

0 commit comments

Comments
 (0)