vikunja/vendor/github.com/spf13/cobra/command_win.go
renovate 8ab4777412
All checks were successful
continuous-integration/drone/pr Build is passing
Update module spf13/cobra to v0.0.7
2020-04-08 15:00:35 +00:00

27 lines
433 B
Go

// +build windows
package cobra
import (
"fmt"
"os"
"time"
"github.com/inconshreveable/mousetrap"
)
var preExecHookFn = preExecHook
func preExecHook(c *Command) {
if MousetrapHelpText != "" && mousetrap.StartedByExplorer() {
c.Print(MousetrapHelpText)
if MousetrapDisplayDuration > 0 {
time.Sleep(MousetrapDisplayDuration)
} else {
c.Println("Press return to continue...")
fmt.Scanln()
}
os.Exit(1)
}
}