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 2b44dbf commit 1129ec2Copy full SHA for 1129ec2
python/private/glob_excludes.bzl
@@ -24,7 +24,7 @@ def _version_dependent_exclusions():
24
a list of glob exclusion patterns
25
"""
26
major, minor, _ = native.bazel_version.split(".")
27
- if major < 7 or (major == 7 and minor < 4):
+ if int(major) < 7 or (int(major) == 7 and int(minor) < 4):
28
return ["**/* *"]
29
else:
30
return []
0 commit comments