mirror of
https://github.com/gopasspw/gopass.git
synced 2026-05-30 11:18:48 +02:00
71861e4a8b
Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org>
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)
|
|
}
|