Skip to content

Commit 9f270c1

Browse files
committed
Fix redundant GLOJURE_USE_AOT case
Signed-off-by: James Hamlin <jfhamlin@gmail.com>
1 parent fd81b50 commit 9f270c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/runtime/rtcompat.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var (
3030
useAot = func() bool {
3131
// default to true
3232
gua := strings.ToLower(os.Getenv("GLOJURE_USE_AOT"))
33-
return !(gua == "0" || gua == "false" || gua == "no" || gua == "false")
33+
return !(gua == "0" || gua == "false" || gua == "no" || gua == "off")
3434
}()
3535
)
3636

0 commit comments

Comments
 (0)