Skip to content

Commit 2c4095a

Browse files
committed
Allow for yes or 1 as experimental values
1 parent 9bd5b96 commit 2c4095a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@ func IsRelease(v string) bool {
4141
}
4242

4343
func IsExperimental() bool {
44-
return Experimental == "true"
44+
return Experimental == "true" || Experimental == "yes" || Experimental == "1"
4545
}

0 commit comments

Comments
 (0)