From 395d3dbf76bd28d930be28367dd337488bdadffe Mon Sep 17 00:00:00 2001 From: Brett Kochendorfer Date: Tue, 4 Jan 2022 09:26:22 -0600 Subject: [PATCH] Update netlify.toml Netlify build is failing. I believe due to this `true` not being a string. From the logs: ```bash json: cannot unmarshal bool into Go struct field BuildConfig.Config.build.environment of type string ``` --- meta/netlify.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/netlify.toml b/meta/netlify.toml index 5b822df9be69f00..20482ae0bb1e79f 100644 --- a/meta/netlify.toml +++ b/meta/netlify.toml @@ -3,4 +3,4 @@ command = "yarn build" [build.environment] - NETLIFY_USE_YARN = true + NETLIFY_USE_YARN = "true"