blob: 633f94b74607ca6a6008e19c37c0600d56b596b9 [file] [log] [blame]
! cue cmd errcode
! stdout .
stderr '^command "ls --badflags" failed: exit status [12]$'
-- task.cue --
package home
message: "Hello world!"
-- task_tool.cue --
package home
command: errcode: {
task: bad: exec.Run & {
kind: "exec"
cmd: "ls --badflags"
stderr: string // suppress error message
}}