summaryrefslogtreecommitdiff
path: root/scripts/clear-pacman-cache
blob: 3891796b5afe42989fbd3e56bebffac66d6f84b7 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

if [[ $UID -eq 0 ]]
then
    paccache -r
    paccache -ruk0
else
    echo "You need to be root!"
fi