Merge pull request #15 from TheLinuxNinja/fix-hook

fix pacman hook to not delete the /var/cache/pacman/pkg directory - …
This commit is contained in:
Santiago Torres 2019-08-10 15:41:01 -04:00 committed by GitHub
commit 3a7de54a80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,4 +8,4 @@ Target = *
Description = Cleaning up package cache...
Depends = coreutils
When = PostTransaction
Exec = /usr/bin/rm -rf /var/cache/pacman/pkg
Exec = /usr/bin/find /var/cache/pacman/pkg/ -type f -delete