chore(akmods): Properly simplify syntax for akmods now
Forgot it's negative condition
This commit is contained in:
parent
0a07a2fa01
commit
40f510467c
1 changed files with 1 additions and 1 deletions
|
|
@ -6,7 +6,7 @@ ENABLE_AKMODS_REPO() {
|
|||
}
|
||||
|
||||
INSTALL_RPM_FUSION() {
|
||||
if [[ "$(rpm -q rpmfusion-free-release)" != "rpmfusion-free-release"* && "$(rpm -q rpmfusion-nonfree-release)" != "rpmfusion-nonfree-release"* ]]; then
|
||||
if ! rpm -q rpmfusion-free-release &>/dev/null && ! rpm -q rpmfusion-nonfree-release &>/dev/null; then
|
||||
rpm-ostree install \
|
||||
https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-${OS_VERSION}.noarch.rpm \
|
||||
https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-${OS_VERSION}.noarch.rpm
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue