Skip to content

Commit

Permalink
install: prevent amd graphics on non x86
Browse files Browse the repository at this point in the history
  • Loading branch information
koush committed Nov 7, 2024
1 parent 611b7c5 commit 65559e6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions install/docker/install-amd-graphics.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
if [ "$(uname -m)" != "x86_64" ]
then
echo "AMD graphics will not be installed on this architecture."
exit 0
fi

UBUNTU_22_04=$(lsb_release -r | grep "22.04")
UBUNTU_24_04=$(lsb_release -r | grep "24.04")

Expand Down

0 comments on commit 65559e6

Please sign in to comment.