blob: a2572f27b4f428d8a4e9271d4a85f6b07c4b5f9e [file] [log] [blame]
skip 'error messages'
! cue cmd notool
! stdout .
cmp stderr cmd_baddisplay.out
-- cmd_baddisplay.out --
cmd must be run as one of its subcommands: unknown subcommand "notool"
Ensure commands are defined in a "_tool.cue" file.
Run 'cue help cmd' for known subcommands.
-- task.cue --
package home
message: "Hello world!"
command: notool: {
task: display: {
kind: "print"
text: 42
}
}