Skip to content

Commit

Permalink
- More issues with the CLI Renderer
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano committed Aug 18, 2023
1 parent 7267a7d commit 592d19f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion box.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name":"TestBox CLI",
"version":"1.3.0",
"version":"1.2.2",
"location":"https://downloads.ortussolutions.com/ortussolutions/commandbox-modules/testbox-cli/@build.version@/[email protected]@.zip",
"slug":"testbox-cli",
"author":"Ortus Solutions, Corp",
Expand Down
6 changes: 5 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- More issues with the CLI Renderer

## [1.2.1] - 2023-08-17

### Fixed

- ensureTestBox() was not looking at the right folder
- `ensureTestBox()` was not looking at the right folder

* * *

Expand Down
4 changes: 2 additions & 2 deletions models/CLIRenderer.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -321,8 +321,8 @@ component {
);

// code print for first stack frame if supported by the CFML engine
if ( arguments.index == 1 && item.keyExists( "codePrintPlain" ) ) {
arguments.print
if ( index == 1 && item.keyExists( "codePrintPlain" ) ) {
print
.line()
.line(
"#repeatString( " ", level + 2 )##item.codePrintPlain.replace(
Expand Down

0 comments on commit 592d19f

Please sign in to comment.