From 6e28eafcd7161ee81c6c3fcfd7332ced4acf3758 Mon Sep 17 00:00:00 2001 From: stellahsr Date: Tue, 19 Mar 2024 23:33:42 +0800 Subject: [PATCH] add fixme comments --- data/inference/make_datasets/repo_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/data/inference/make_datasets/repo_utils.py b/data/inference/make_datasets/repo_utils.py index ce5f2d418..e9483e6d0 100644 --- a/data/inference/make_datasets/repo_utils.py +++ b/data/inference/make_datasets/repo_utils.py @@ -72,6 +72,7 @@ class EnvManager: gitignore_path = Path(".gitignore") if gitignore_path.exists(): self.exec(["git", "ls-files", "--ignored", "--exclude-standard", "-o", "-z"], raise_error=False) + # fixme: need detect platform and change this cmd # self.exec(["xargs", "-0", "-r", "rm", "-rf"], input=gitignore_path.read_text()) self.exec(["git", "restore", "."])