We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e634f27 commit e23ee0fCopy full SHA for e23ee0f
gulp/tasks/unit.js
@@ -20,11 +20,14 @@ const unit = async function() {
20
21
await gulpExeca('nyc ava')
22
23
+ // TODO: remove and link the two `gulpExeca` with &&
24
await tempFix()
25
26
const os = PLATFORMS[platform()]
27
await gulpExeca(
- `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`,
31
)
32
}
33
0 commit comments