diff --git a/dev/devcam/server.go b/dev/devcam/server.go index 5bd2145d2..2c463671c 100644 --- a/dev/devcam/server.go +++ b/dev/devcam/server.go @@ -364,6 +364,5 @@ func (c *serverCmd) RunCommand(args []string) error { return fmt.Errorf("Could not start camlistored: %v", err) } go handleSignals(cmd.Process) - cmd.Wait() - return nil + return cmd.Wait() }