aboutsummaryrefslogtreecommitdiff
path: root/src/util/git-rm-thorn.pl
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/git-rm-thorn.pl')
-rwxr-xr-xsrc/util/git-rm-thorn.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/git-rm-thorn.pl b/src/util/git-rm-thorn.pl
index 75769f1..b34692c 100755
--- a/src/util/git-rm-thorn.pl
+++ b/src/util/git-rm-thorn.pl
@@ -29,9 +29,9 @@ $ENV{'GIT_DIR'} = "$git_repo/.git";
# git aborts after the first error
for my $file (@files) {
- print "Executing: $git_cmd rm --cached -r $file 2> /dev/null\n"
+ print "Executing: $git_cmd rm --cached -r '$file' 2> /dev/null\n"
unless $silent;
- system "$git_cmd rm --cached -r $file > /dev/null 2>&1";
+ system "$git_cmd rm --cached -r '$file' > /dev/null 2>&1";
# Ignore errors
#if ($?) {
# die "Could not remove thorn $thorn from git repository";