docs: fix Windows build (#5742) (#5743)

master
Jimmy Gaussen 2019-01-11 00:33:43 +01:00 committed by Jed Fox
parent 94eab666c4
commit 282597c1e5
1 changed files with 2 additions and 2 deletions

View File

@ -29,8 +29,8 @@ if (isPullRequest) {
shell.exec("yarn build");
pipe(JSON.stringify(pkg, null, 2)).to("package.json"); // restore
}
shell.exec(`cp ${prettierPath}/standalone.js ${docs}/`);
shell.exec(`cp ${prettierPath}/parser-*.js ${docs}/`);
shell.cp(`${prettierPath}/standalone.js`, `${docs}/`);
shell.cp(`${prettierPath}/parser-*.js`, `${docs}/`);
// --- Site ---
shell.cd("website");