diff options
Diffstat (limited to 'post-apt.d/60git-rm')
-rwxr-xr-x | post-apt.d/60git-rm | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/post-apt.d/60git-rm b/post-apt.d/60git-rm deleted file mode 100755 index 4a47435..0000000 --- a/post-apt.d/60git-rm +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh -set -e - -TAB=" " - -for file in $(git ls-files --deleted); do - if [ ! -d "$file" ]; then - git rm "$file" - fi -done |