Skip to content

Commit

Permalink
PR 4286: fix invalid syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
dmn-star committed Jan 25, 2021
1 parent e313310 commit d771a11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/msys2/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def validate(self):
raise ConanInvalidConfiguration("Only Windows supported")
if tools.Version(self.version) >= "20210105" and self.settings.arch != "x86_64":
raise ConanInvalidConfiguration("Only Windows x64 supported")
if tools.Version(self.version) <= "20161025"
if tools.Version(self.version) <= "20161025":
raise ConanInvalidConfiguration("msys2 v.20161025 is no longer supported")


Expand Down

0 comments on commit d771a11

Please sign in to comment.