Reduce desiredMinBinarySize

Updating the Go version has also optimized the binary size, so the desiredMinBinarySize is being updated to be 1.9
This commit is contained in:
Ajitem Sahasrabuddhe 2020-10-31 00:14:08 +05:30
parent 2a5a092888
commit 06e570991c

View File

@ -193,7 +193,7 @@ func checkBinarySizeActionFunc(c *cli.Context) (err error) {
cliBuiltFilePath = "./internal/example-cli/built-example"
helloSourceFilePath = "./internal/example-hello-world/example-hello-world.go"
helloBuiltFilePath = "./internal/example-hello-world/built-example"
desiredMinBinarySize = 2.0
desiredMinBinarySize = 1.9
desiredMaxBinarySize = 2.1
badNewsEmoji = "🚨"
goodNewsEmoji = "✨"