You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. Execute the following program:
package main
import (
"code.google.com/p/gopass"
"time"
)
func main() {
_, err := gopass.GetPass("password:")
if err != nil {
println("error:", err)
}
println("Going to sleep...")
time.Sleep(1 * time.Minute)
println("... leaving!")
}
2. Hit CTRL+C when the program "sleeps"
We would expect the program to quit due to the receiving SIGINT. Instead the
signal is silently captured and left unprocessed. Calling signal.Stop upon
leaving GoPass passes control back to the program.
Original issue reported on code.google.com by [email protected] on 5 Jan 2014 at 11:44
Original issue reported on code.google.com by
[email protected]
on 5 Jan 2014 at 11:44Attachments:
The text was updated successfully, but these errors were encountered: