Merge pull request #2437 from jejayhe/master

Some code optimization
pull/2623/head
Kslr 2020-06-27 07:27:27 +08:00 committed by GitHub
commit 665e9b042c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ var (
format = flag.String("format", "json", "Format of input file.") format = flag.String("format", "json", "Format of input file.")
/* We have to do this here because Golang's Test will also need to parse flag, before /* We have to do this here because Golang's Test will also need to parse flag, before
main func in this file is run. main func in this file is run.
*/ */
_ = func() error { _ = func() error {
@ -166,7 +166,7 @@ func main() {
{ {
osSignals := make(chan os.Signal, 1) osSignals := make(chan os.Signal, 1)
signal.Notify(osSignals, os.Interrupt, os.Kill, syscall.SIGTERM) signal.Notify(osSignals, os.Interrupt, syscall.SIGTERM)
<-osSignals <-osSignals
} }
} }