From 217b1111b232a0fe4d7712a1001f5fd756e8452b Mon Sep 17 00:00:00 2001 From: bottler Date: Thu, 12 Jan 2023 22:03:35 +0000 Subject: [PATCH] artifacts fix for multiple builds ghstack-source-id: 72c82a1433ecb7b6b50214bf26b0d29dad37bf85 Pull Request resolved: https://github.com/fairinternal/xformers/pull/425 __original_commit__ = fairinternal/xformers@8a20da181fe963031d41398158a5373ce5c3e7bf --- packaging/build_conda.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/build_conda.py b/packaging/build_conda.py index 8417a188a..655d6f4f4 100644 --- a/packaging/build_conda.py +++ b/packaging/build_conda.py @@ -158,7 +158,7 @@ def move_artifacts_to_store(self): assert not self.build_inside_tree artifacts = Path("artifacts") artifacts.mkdir(exist_ok=True) - for filename in Path("../build/linux-64").resolve().glob("*.bz2"): + for filename in Path("../build/linux-64").resolve().glob("*.tar.bz2"): print("moving", filename) shutil.move(filename, artifacts)