Skip to main content
Module

x/run_simple/mod.ts>CommandFailure

Simple run function to execute shell commands in Deno.
Latest
interface CommandFailure
import { type CommandFailure } from "https://deno.land/x/run_simple@2.3.0/mod.ts";

What the promise is rejected with, if the command exits with a non-zero exit code.

Properties

cmd: string[]

The command that was run.

stderr: string

What the command printed to STDERR.

stdout: string

What the command printed to STDOUT (as far as it got).