We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1830c7f commit 93aa391Copy full SHA for 93aa391
main.go
@@ -1713,11 +1713,11 @@ func main() {
1713
ocdCommands = strings.Split(*ocdCommandsString, ",")
1714
}
1715
1716
- val, ok := os.LookupEnv("TINYGOGOCOMPATIBILITY")
+ val, ok := os.LookupEnv("TINYGO_GOCOMPATIBILITY")
1717
if ok {
1718
b, err := strconv.ParseBool(val)
1719
if err != nil {
1720
- fmt.Fprintf(os.Stderr, "could not parse TINYGOGOCOMPATIBILITY value %q: %v\n", val, err)
+ fmt.Fprintf(os.Stderr, "could not parse TINYGO_GOCOMPATIBILITY value %q: %v\n", val, err)
1721
os.Exit(1)
1722
1723
*gocompatibility = b
0 commit comments