Skip to content

Commit 0e4e6fe

Browse files
committed
fix: sed issue
1 parent 6ec3a8e commit 0e4e6fe

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ jobs:
183183
- run:
184184
name: Run Windows tests in parallel
185185
command: |
186-
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings | tr "\\" "/" | sed 's|test/windows/||g')
186+
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings | sed 's|\\|/|g; s|test/windows/||g')
187187
npm run test-jest-windows -- $TEST
188188
no_output_timeout: 20m
189189
test_jest_windows_no_docker:
@@ -200,7 +200,7 @@ jobs:
200200
- run:
201201
name: Run Windows tests in parallel
202202
command: |
203-
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings | tr "\\" "/" | sed 's|test/windows/||g')
203+
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings | sed 's|\\|/|g; s|test/windows/||g')
204204
npm run test-jest-windows -- $TEST
205205
build_cli:
206206
<<: *defaults

0 commit comments

Comments
 (0)