Skip to content

Commit

Permalink
fix: Correct issue detecting nvidia flavor
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleGospo committed Oct 9, 2023
1 parent 4b54774 commit f6090db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system_files/desktop/shared/usr/bin/bazzite-hardware-setup
Expand Up @@ -86,7 +86,7 @@ if grep -qz "Kernel driver in use: radeon" <<< $GPU_ID; then
fi
fi

if [[ $IMAGE_FLAVOR = "nvidia" ]]; then
if [[ $IMAGE_FLAVOR =~ "nvidia" ]]; then
echo "Checking for needed karg changes (Nvidia)"

if [[ ! $KARGS =~ "rd.driver.blacklist" ]]; then
Expand Down

0 comments on commit f6090db

Please sign in to comment.