2
2
mirror of https://github.com/octoleo/restic.git synced 2025-01-24 23:58:28 +00:00

21 lines
305 B
Go
Raw Normal View History

2017-07-23 14:24:45 +02:00
// +build windows
package cobra
import (
"os"
"time"
"github.com/inconshreveable/mousetrap"
)
var preExecHookFn = preExecHook
func preExecHook(c *Command) {
if MousetrapHelpText != "" && mousetrap.StartedByExplorer() {
c.Print(MousetrapHelpText)
time.Sleep(5 * time.Second)
os.Exit(1)
}
}