1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-09 01:16:55 +00:00
kyverno/vendor/gotest.tools/icmd/internal/stub/main.go

26 lines
370 B
Go

package main
import (
"flag"
"fmt"
"os"
"time"
)
func main() {
sleep := flag.Duration("sleep", 0, "Sleep")
warn := flag.Bool("warn", false, "Warn")
fail := flag.Int("fail", 0, "Fail with code")
flag.Parse()
if *sleep != 0 {
time.Sleep(*sleep)
}
fmt.Println("this is stdout")
if *warn {
fmt.Fprintln(os.Stderr, "this is stderr")
}
os.Exit(*fail)
}