summaryrefslogtreecommitdiff
path: root/prettier/util.ts
blob: 1c5513c8d03768a46e02bce8ea018b0efe5ada6c (plain)
1
2
3
4
5
6
7
8
9
10
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
const { build, run } = Deno;

// Runs a command in cross-platform way
export function xrun(opts): Deno.Process {
  return run({
    ...opts,
    args: build.os === "win" ? ["cmd.exe", "/c", ...opts.args] : opts.args
  });
}