Fix typo that makes vcs_remove fail

This commit is contained in:
Alice Example
2014-09-01 14:26:56 -04:00
parent dcfb08defd
commit d6a20b049f

View File

@@ -270,7 +270,7 @@ function vcs_commit_git() {
# Remove file from repo, even if it was deleted locally already. # Remove file from repo, even if it was deleted locally already.
# If it doesn't exist yet in the repo, it should be a no-op. # If it doesn't exist yet in the repo, it should be a no-op.
function vcs_remove() { function vcs_remove() {
vcs_remove$(which_vcs) """$@""" vcs_remove_$(which_vcs) """$@"""
} }
# Mercurial # Mercurial
function vcs_remove_hg() { function vcs_remove_hg() {