From f5d75d8efdf411ec6ca399ef0505ec53930af014 Mon Sep 17 00:00:00 2001 From: Olivier Combe Date: Mon, 12 Mar 2018 20:47:33 +0100 Subject: [PATCH] build: fix postinstall for windows (#22720) PR Close #22720 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 883e050cd2e51..54eec314c1919 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "prebuildifier": "bazel build --noshow_progress @com_github_bazelbuild_buildtools//buildifier", "buildifier": "find . -type f \\( -name BUILD -or -name BUILD.bazel \\) ! -path \"*/node_modules/*\" | xargs $(bazel info bazel-bin)/external/com_github_bazelbuild_buildtools/buildifier/buildifier", "preinstall": "node tools/yarn/check-yarn.js", - "postinstall": "yarn update-webdriver; node ./tools/postinstall-patches.js", + "postinstall": "yarn update-webdriver && node ./tools/postinstall-patches.js", "update-webdriver": "webdriver-manager update --gecko false $CHROMEDRIVER_VERSION_ARG", "check-env": "gulp check-env" },