From 8320a305637a16e1c2199221d38498c950e98912 Mon Sep 17 00:00:00 2001 From: Mostyn Bramley-Moore Date: Wed, 29 Apr 2020 23:03:31 +0200 Subject: [PATCH] fixup! Add word-wrap support based on terminal size raise binary size limit by 0.1M --- internal/build/build.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/build/build.go b/internal/build/build.go index 197cfa5b60..95ee96905b 100644 --- a/internal/build/build.go +++ b/internal/build/build.go @@ -194,7 +194,7 @@ func checkBinarySizeActionFunc(c *cli.Context) (err error) { helloSourceFilePath = "./internal/example-hello-world/example-hello-world.go" helloBuiltFilePath = "./internal/example-hello-world/built-example" desiredMinBinarySize = 2.0 - desiredMaxBinarySize = 2.1 + desiredMaxBinarySize = 2.2 badNewsEmoji = "🚨" goodNewsEmoji = "✨" checksPassedEmoji = "✅"