Skip to content

Commit 7904bd4

Browse files
committed
fix: escape in sed
1 parent 5d6973b commit 7904bd4

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
@@ -169,7 +169,7 @@ jobs:
169169
- run:
170170
name: Run Windows tests in parallel
171171
command: |
172-
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings | tr '\\' '/' | sed 's|test/windows/||g')
172+
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings | tr "\\" "/" | sed 's|test/windows/||g')
173173
npm run test-jest-windows -- $TEST
174174
no_output_timeout: 20m
175175
test_jest_windows_no_docker:
@@ -186,7 +186,7 @@ jobs:
186186
- run:
187187
name: Run Windows tests in parallel
188188
command: |
189-
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings | tr '\\' '/' | sed 's|test/windows/||g')
189+
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings | tr "\\" "/" | sed 's|test/windows/||g')
190190
npm run test-jest-windows -- $TEST
191191
build:
192192
<<: *defaults

0 commit comments

Comments
 (0)