mirror of
https://github.com/gopasspw/gopass.git
synced 2025-12-08 19:24:54 +00:00
14 lines
179 B
Go
14 lines
179 B
Go
//go:build !windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"os/signal"
|
|
"syscall"
|
|
)
|
|
|
|
func init() {
|
|
// workaround for https://github.com/golang/go/issues/37942
|
|
signal.Ignore(syscall.SIGURG)
|
|
}
|