build: fix postinstall for windows (#22720)

PR Close #22720
This commit is contained in:
Olivier Combe 2018-03-12 20:47:33 +01:00 committed by Kara Erickson
parent 6e00410e1c
commit f5d75d8efd
1 changed files with 1 additions and 1 deletions

View File

@ -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"
},