File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" :" ColdBox CLI" ,
3
- "version" :" 7.2.0 " ,
3
+ "version" :" 7.2.1 " ,
4
4
"location" :" https://downloads.ortussolutions.com/ortussolutions/commandbox-modules/coldbox-cli/@build.version@/coldbox-cli-@build.version@.zip" ,
5
5
"slug" :" coldbox-cli" ,
6
6
"author" :" Ortus Solutions, Corp" ,
29
29
},
30
30
"dependencies" :{
31
31
"commandbox-migrations" :" ^5.0.0" ,
32
- "testbox-cli" :" ^1.0.0"
32
+ "testbox-cli" :" ^1.0.0"
33
33
},
34
34
"installPaths" :{},
35
35
"ignore" :[
Original file line number Diff line number Diff line change @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
## [ Unreleased]
11
11
12
+ ### Fixed
13
+
14
+ - Fixed ` coldbox create layout ` failing due to unescpaed ` #view()# ` command
15
+
12
16
## [ 7.2.0] - 2023-05-18
13
17
14
18
### Added
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ component extends="coldbox-cli.models.BaseCommand" {
40
40
savecontent variable = " local.layoutContent" {
41
41
writeOutput ( " <cfoutput>#variables .utility .BREAK #" )
42
42
writeOutput ( arguments .content )
43
- writeOutput ( " <div>#view () #</div>#variables .utility .BREAK #" )
43
+ writeOutput ( " <div>## view()# # </div>#variables .utility .BREAK #" )
44
44
writeOutput ( " </cfoutput>" )
45
45
};
46
46
You can’t perform that action at this time.
0 commit comments