Skip to content

Commit

Permalink
- You can now pass slashes on bundles and will automatically convert …
Browse files Browse the repository at this point in the history
…them to dot notation.
  • Loading branch information
lmajano committed Sep 28, 2024
1 parent 3ba7133 commit 0cf3707
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- You can now pass slashes on bundles and will automatically convert them to dot notation.

## [1.6.0] - 2024-09-23

## [1.5.0] - 2024-09-17
Expand Down
3 changes: 3 additions & 0 deletions commands/testbox/run.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,9 @@ component extends="testboxCLI.models.BaseCommand" {
boolean verbose,
boolean testboxUseLocal = true
){
// Remove /\ to . in bundles
arguments.bundles = arguments.bundles.replace( "/\", "." );

// Ensure TestBox For reporting and conversions
ensureTestBox( arguments.testboxUseLocal );

Expand Down

0 comments on commit 0cf3707

Please sign in to comment.