fix error message when removing secrets

This commit is contained in:
Jörg Thalheim
2024-07-24 20:21:10 +02:00
parent a6f4d6fbf0
commit 3583c25c67

View File

@@ -62,7 +62,7 @@ def _commit_file_to_git(
for file_path in file_paths: for file_path in file_paths:
cmd = run_cmd( cmd = run_cmd(
["git"], ["git"],
["git", "-C", str(repo_dir), "add", str(file_path)], ["git", "-C", str(repo_dir), "add", "--", str(file_path)],
) )
# add the file to the git index # add the file to the git index
@@ -75,7 +75,7 @@ def _commit_file_to_git(
# check if there is a diff # check if there is a diff
cmd = run_cmd( cmd = run_cmd(
["git"], ["git"],
["git", "-C", str(repo_dir), "diff", "--cached", "--exit-code"] ["git", "-C", str(repo_dir), "diff", "--cached", "--exit-code", "--"]
+ [str(file_path) for file_path in file_paths], + [str(file_path) for file_path in file_paths],
) )
result = run(cmd, check=False, cwd=repo_dir) result = run(cmd, check=False, cwd=repo_dir)