1
0
Fork 0

fedora: do not autoremove, only normal remove

This commit is contained in:
Pratham Patel 2024-04-18 08:05:00 +05:30
parent 6c4d05b757
commit 74ab321135
Signed by: thefossguy
SSH Key Fingerprint: SHA256:HwRBy9H1FYXWcv/Qi1WY3kmcVtGz2ydZuPJgD4pkusY
1 changed files with 1 additions and 1 deletions

View File

@ -24,5 +24,5 @@ if [[ -z "${1:-}" ]]; then
build_kernel
install_kernel
else
sudo dnf autoremove $(rpm -qa | grep '^kernel' | grep "$1")
sudo dnf remove $(rpm -qa | grep '^kernel' | grep "$1")
fi