mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
2ba7de2d04
Original: 6063378a92
12 lines
361 B
TypeScript
12 lines
361 B
TypeScript
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
const { platform, run } = 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" : "";
|