summaryrefslogtreecommitdiff
path: root/shared/env.go
diff options
context:
space:
mode:
Diffstat (limited to 'shared/env.go')
-rw-r--r--shared/env.go9
1 files changed, 5 insertions, 4 deletions
diff --git a/shared/env.go b/shared/env.go
index 152729ba0..b7d3bafb4 100644
--- a/shared/env.go
+++ b/shared/env.go
@@ -32,10 +32,11 @@ type envFileData []envFileEntry
//
// e.g. OUT_DIR = "out"
// is converted to:
-// {
-// "Key": "OUT_DIR",
-// "Value": "out",
-// },
+//
+// {
+// "Key": "OUT_DIR",
+// "Value": "out",
+// },
func EnvFileContents(envDeps map[string]string) ([]byte, error) {
contents := make(envFileData, 0, len(envDeps))
for key, value := range envDeps {