devcam: handle failed camlistored execution.

Issue https://camlistore.org/issue/208

Change-Id: Ie5bf46d13023bc82f7e2934947393708c9308915
This commit is contained in:
Bill Thiede 2013-08-21 20:22:33 -07:00
parent d662024fcf
commit ef4719a78c
1 changed files with 1 additions and 2 deletions

View File

@ -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()
}