From aed3510605fa40eda148dfa3694d8f1d3d90125f Mon Sep 17 00:00:00 2001 From: alessio Date: Sun, 20 Nov 2016 18:38:42 +0100 Subject: [PATCH] preview disabled by default --- watcher/cmd.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/watcher/cmd.go b/watcher/cmd.go index 92f230c..d4e2a2c 100644 --- a/watcher/cmd.go +++ b/watcher/cmd.go @@ -36,9 +36,10 @@ func (h *Blueprint) Add(p *cli.Context) error { Test: p.Bool("test"), Params: argsParam(p), Watcher: Watcher{ - Paths: []string{"/"}, - Ignore: []string{"vendor"}, - Exts: []string{".go"}, + Paths: []string{"/"}, + Ignore: []string{"vendor"}, + Exts: []string{".go"}, + Preview: false, }, Cli: Cli{ Streams: true,