Skip to content

Commit b3aa25e

Browse files
fix: V-001 security vulnerability
Automated security fix generated by Orbis Security AI Signed-off-by: orbisai0security <mediratta01.pally@gmail.com>
1 parent ce93c54 commit b3aa25e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bin/rename.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def git_rename(source, destination, dryrun):
8585
command = ["git", "mv"]
8686
if dryrun:
8787
command.append("--dry-run")
88-
command.extend([source, destination])
88+
command.extend(["--", source, destination])
8989
result = subprocess.run(command, capture_output=True, check=True, text=True)
9090
for line in result.stdout.splitlines():
9191
logging.info("git:%s", line)

0 commit comments

Comments
 (0)