Squashing git-clean calls into one call; -X following .gitignore is what we want in place of -x

This commit is contained in:
2023-10-08 17:03:57 -05:00
parent fb9de15de0
commit 07fec4262e
2 changed files with 2 additions and 3 deletions

View File

@@ -21,7 +21,7 @@ install: ${list} MaatIcon.png
for i in ${systemdList}; do install -m 0644 -o root $$i ${pkgdir}/usr/lib/systemd/system; done
clean:
git clean -fx && git clean -fd
git clean -fdX
uninstall:
for i in ${list}; do rm -Rf ${installDir}/$$i; done