Skip to content

Commit

Permalink
Fix issues
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanhammond committed Apr 12, 2023
1 parent 3220eee commit fc23ab3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cli/integration_tests/run_summary/error.t
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ Validate that we got a full task summary for the failed task with an error in .e
"global": [
"SOME_ENV_VAR=",
"VERCEL_ANALYTICS_ID="
]
],
"passthrough": null,
"globalPassthrough": null
},
"execution": {
"startTime": [0-9]+, (re)
Expand Down
1 change: 1 addition & 0 deletions cli/internal/util/run_opts.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ const (
Strict EnvMode = "Strict"
)

// MarshalText implements TextMarshaler for the struct.
func (s EnvMode) MarshalText() (text []byte, err error) {
return []byte(strings.ToLower(string(s))), nil
}
Expand Down

0 comments on commit fc23ab3

Please sign in to comment.