From 33c093b2365317ecad58e49cb681378ac2448e6c Mon Sep 17 00:00:00 2001 From: Justin Cormack Date: Mon, 1 Feb 2016 21:32:28 +0000 Subject: [PATCH] fix hupper killing docker on start Signed-off-by: Justin Cormack --- alpine/packages/hupper/main.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/alpine/packages/hupper/main.go b/alpine/packages/hupper/main.go index d7e79b73b..b131e0ab3 100644 --- a/alpine/packages/hupper/main.go +++ b/alpine/packages/hupper/main.go @@ -47,6 +47,9 @@ func main() { if err != nil && err != io.EOF { log.Fatalln("Error reading watch file", err) } + if err == io.EOF { + continue + } // a few changes eg debug do not require a daemon restart // however at present we cannot check changes, and most do restart := true