Skip to content

Commit

Permalink
chore(scripts): fix checkSchema command
Browse files Browse the repository at this point in the history
  • Loading branch information
ikatyang committed Jul 29, 2018
1 parent 86614bd commit f0f45a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/release/steps/post-publish-steps.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const EDIT_URL = `https://github.com/${SCHEMA_REPO}/edit/master/${SCHEMA_PATH}`;
// Any optional or manual step can be warned in this script.

async function checkSchema() {
const schema = await execa.stdout("node scripts/generate-schema.js");
const schema = await execa.stdout("node", ["scripts/generate-schema.js"]);
const remoteSchema = await logPromise(
"Checking current schema in SchemaStore",
fetch(RAW_URL)
Expand Down

0 comments on commit f0f45a2

Please sign in to comment.