]> git.madduck.net Git - code/vcsh.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Force temporary file/directory removal
authorMert Dirik <mertdirik@gmail.com>
Mon, 20 Oct 2014 21:25:43 +0000 (00:25 +0300)
committerMert Dirik <mertdirik@gmail.com>
Mon, 20 Oct 2014 21:25:43 +0000 (00:25 +0300)
vcsh

diff --git a/vcsh b/vcsh
index b10d80956395ea61a11f19c539349bcc95e46998..fb1c091879fbb3e05ccac0e597ac06046e617fd2 100755 (executable)
--- a/vcsh
+++ b/vcsh
@@ -314,7 +314,8 @@ list_untracked() {
                comm -12 --nocheck-order $temp_file_others $temp_file_untracked_copy > $temp_file_untracked
        done
        cat $temp_file_untracked
-       rm -r $temp_file_others $temp_file_untracked $temp_file_untracked_copy $temp_repo || fatal 'Could not delete temp file'
+       rm -f $temp_file_others $temp_file_untracked $temp_file_untracked_copy || fatal 'Could not delete temp files'
+       rm -rf $temp_repo || fatal 'Could not delete temp repo'
 }
 
 rename() {