]> granicus.if.org Git - graphviz/commitdiff
fix: correctly recognize Windows packages in deploy script
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 10 Mar 2021 01:08:42 +0000 (17:08 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 10 Mar 2021 01:08:42 +0000 (17:08 -0800)
239f6301789b603202d500f7ae58e800354c1524 identified Windows packages containing
the word “Windows” but the package filenames actually have this in lower case.
Closes #1955.

ci/deploy.py

index 16e2ec135465e36073995cd258af8bda19bdecfd..bed60c51b1ecc7d6e0d2d43fe1cfea2217ce3ae7 100644 (file)
@@ -93,7 +93,7 @@ def is_windows_artifact(path: str) -> bool:
   '''
   is this a deployment artifact for Windows?
   '''
-  return re.search(r'\bWindows\b', path) is not None
+  return re.search(r'\bwindows\b', path) is not None
 
 def main(args: List[str]) -> int: