Skip to content

Commit e23ee0f

Browse files
committed
Use multiple lines
1 parent e634f27 commit e23ee0f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

gulp/tasks/unit.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,14 @@ const unit = async function() {
2020

2121
await gulpExeca('nyc ava')
2222

23+
// TODO: remove and link the two `gulpExeca` with &&
2324
await tempFix()
2425

2526
const os = PLATFORMS[platform()]
2627
await gulpExeca(
27-
`curl -s https://codecov.io/bash > codecov && bash codecov -f coverage/lcov.info -F ${os} -Z && rm codecov`,
28+
`curl -s https://codecov.io/bash > codecov && \
29+
bash codecov -f coverage/lcov.info -F ${os} -Z && \
30+
rm codecov`,
2831
)
2932
}
3033

0 commit comments

Comments
 (0)