From 1b0aaf9f6fe958fffc610556ec0f5bc91c14dc54 Mon Sep 17 00:00:00 2001 From: alessio Date: Mon, 7 Aug 2017 23:14:59 +0200 Subject: [PATCH] env fixed --- watcher/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/watcher/main.go b/watcher/main.go index 9696350..79eb154 100644 --- a/watcher/main.go +++ b/watcher/main.go @@ -36,7 +36,7 @@ type Project struct { base string Name string `yaml:"name" json:"name"` Path string `yaml:"path" json:"path"` - Environment map[string]string `yaml:"environment" json:"environment"` + Environment map[string]string `yaml:"environment,omitempty" json:"environment,omitempty"` Cmds Cmds `yaml:"commands" json:"commands"` Args []string `yaml:"args,omitempty" json:"args,omitempty"` Watcher Watcher `yaml:"watcher" json:"watcher"`