diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-04-27 17:01:33 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-04-27 17:01:33 -0700 |
commit | 316394ee8920cd4dc84e031278e5d336d9db0944 (patch) | |
tree | 3b2c928932c1a3428b21104d1e06f60a25c8a84c /runsc/main.go | |
parent | 1c2ecbb1a03ffaa3bcdb2ee69c879da5e7076fa5 (diff) | |
parent | 147c8ba1f74133990f19b5c0e6dfd0fa28855f52 (diff) |
Merge pull request #2544 from prattmic:runsc_do_cleanup
PiperOrigin-RevId: 308727526
Diffstat (limited to 'runsc/main.go')
-rw-r--r-- | runsc/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runsc/main.go b/runsc/main.go index 2baba90f8..8e594c58e 100644 --- a/runsc/main.go +++ b/runsc/main.go @@ -330,7 +330,7 @@ func main() { log.Infof("Exiting with status: %v", ws) if ws.Signaled() { // No good way to return it, emulate what the shell does. Maybe raise - // signall to self? + // signal to self? os.Exit(128 + int(ws.Signal())) } os.Exit(ws.ExitStatus()) |