1
0
Fork 0

Compare commits

...

2 Commits

Author SHA1 Message Date
Pratham Patel 6ee1f30b6b
disable SC2046 2024-04-18 08:05:32 +05:30
Pratham Patel 74ab321135
fedora: do not autoremove, only normal remove 2024-04-18 08:05:00 +05:30
1 changed files with 2 additions and 1 deletions

View File

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