mirror of
https://github.com/denoland/deno.git
synced 2024-11-28 16:20:57 -05:00
dd208a6df0
Regression from https://github.com/denoland/deno/pull/25370
34 lines
742 B
TypeScript
34 lines
742 B
TypeScript
const binaryName = Deno.build.os === "windows" ? "deno.exe" : "deno";
|
|
const pathSep = Deno.build.os === "windows" ? "\\" : "/";
|
|
|
|
Deno.mkdirSync("subdir");
|
|
Deno.copyFileSync(binaryName, "subdir/" + binaryName);
|
|
|
|
try {
|
|
const commandResult = new Deno.Command(
|
|
"deno",
|
|
{
|
|
env: { "PATH": Deno.cwd() + pathSep + "subdir" },
|
|
stdout: "inherit",
|
|
stderr: "inherit",
|
|
},
|
|
).outputSync();
|
|
|
|
console.log(commandResult.code);
|
|
} catch (err) {
|
|
console.log(err);
|
|
}
|
|
|
|
try {
|
|
const child = Deno.run(
|
|
{
|
|
cmd: ["deno"],
|
|
env: { "PATH": Deno.cwd() + pathSep + "subdir" },
|
|
stdout: "inherit",
|
|
stderr: "inherit",
|
|
},
|
|
);
|
|
console.log((await child.status()).code);
|
|
} catch (err) {
|
|
console.log(err);
|
|
}
|