Skip to content

Commit 1129ec2

Browse files
committed
fix
1 parent 2b44dbf commit 1129ec2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/private/glob_excludes.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def _version_dependent_exclusions():
2424
a list of glob exclusion patterns
2525
"""
2626
major, minor, _ = native.bazel_version.split(".")
27-
if major < 7 or (major == 7 and minor < 4):
27+
if int(major) < 7 or (int(major) == 7 and int(minor) < 4):
2828
return ["**/* *"]
2929
else:
3030
return []

0 commit comments

Comments
 (0)