Skip to content

Commit

Permalink
switched default values to the most common use case
Browse files Browse the repository at this point in the history
  • Loading branch information
fearphage authored and philc committed Jul 16, 2021
1 parent 20bbca7 commit d742dfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion make.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ fs = require("fs");
child_process = require("child_process");

// Spawns a new process and returns it.
function spawn(procName, optArray, silent = false, sync = false) {
function spawn(procName, optArray, silent = false, sync = true) {
if (process.platform == "win32") {
// if win32, prefix arguments with "/c {original command}"
// e.g. "mkdir c:\git\vimium" becomes "cmd.exe /c mkdir c:\git\vimium"
Expand Down

0 comments on commit d742dfc

Please sign in to comment.