blob: 179be444b6b97e24243311d3283dce43513d49ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { platform, run } from "deno";
// Runs a command in cross-platform way
export function xrun(opts) {
return run({
...opts,
args: platform.os === "win" ? ["cmd.exe", "/c", ...opts.args] : opts.args
});
}
export const executableSuffix = platform.os === "win" ? ".exe" : "";
|