fix: add quotes to path in "add_path" subcommand

This commit is contained in:
Bruce Schultz 2022-08-03 11:03:10 +02:00 committed by mbarkhau
parent eb0e282a69
commit 56e8eb9bc0

View file

@ -48,7 +48,7 @@ VCS_SUBCOMMANDS_BY_NAME = {
'fetch' : "git fetch",
'ls_tags' : "git tag --list",
'status' : "git status --porcelain",
'add_path' : "git add --update {path}",
'add_path' : "git add --update '{path}'",
'commit' : "git commit --message '{message}'",
'tag' : "git tag --annotate {tag} --message {tag}",
'push_tag' : "git push {remote} --follow-tags {tag} HEAD",