Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion scripts/bootstrap.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// This file is a wrapper around `yarn` that allows us to run `yarn` from the
// root of the project, but still have it run the `bootstrap` script when no
// arguments are passed.

const os = require('os');
const path = require('path');
const child_process = require('child_process');
Expand Down Expand Up @@ -26,4 +30,4 @@ if (process.cwd() !== root || args.length) {
result = child_process.spawnSync('yarn', ['bootstrap'], options);
}

process.exitCode = result.status;
process.exitCode = result.status;