summaryrefslogtreecommitdiff
path: root/post-install.d/40git-rm
blob: 3d5289aadd2cd4a0e76d49a26c7b5934b2b9b41e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -e

TAB="	"

if [ "$VCS" = git ] && [ -d .git ]; then
	for file in $(git ls-files --deleted); do
		if [ ! -d "$file" ]; then 
			git rm --quiet "$file"
		fi
	done
fi