diff options
author | Luca Casonato <hello@lcas.dev> | 2021-06-14 20:57:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-14 20:57:02 +0200 |
commit | f48d66b2b01fef0f16beb35a66f1b4d5771e3b6e (patch) | |
tree | 5fb5bb0fe19c6465c49e00d783c12b6755bd1d52 /tools/wpt/utils.ts | |
parent | c651757fb7a1f6cec94c3857973d3316129bccb8 (diff) |
tests: fix wpt epoch ci job (#10960)
Diffstat (limited to 'tools/wpt/utils.ts')
-rw-r--r-- | tools/wpt/utils.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/wpt/utils.ts b/tools/wpt/utils.ts index 0eb9a89e7..f1c8488af 100644 --- a/tools/wpt/utils.ts +++ b/tools/wpt/utils.ts @@ -144,6 +144,7 @@ export async function checkPy3Available() { } export async function cargoBuild() { + if (binary) return; const proc = Deno.run({ cmd: ["cargo", "build", ...(release ? ["--release"] : [])], cwd: ROOT_PATH, |