summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--commands/server.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/commands/server.go b/commands/server.go
index 09cf43b24..48e76da6b 100644
--- a/commands/server.go
+++ b/commands/server.go
@@ -261,6 +261,11 @@ func (sc *serverCmd) server(cmd *cobra.Command, args []string) error {
s.RegisterMediaTypes()
}
+ err = c.serve(sc)
+ if err != nil {
+ return err
+ }
+
// Watch runs its own server as part of the routine
if sc.serverWatch {
@@ -283,7 +288,7 @@ func (sc *serverCmd) server(cmd *cobra.Command, args []string) error {
}
- return c.serve(sc)
+ return nil
}
func getRootWatchDirsStr(baseDir string, watchDirs []string) string {