Skip to content

Commit 849114c

Browse files
authored
fix
1 parent b69921f commit 849114c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

archlinux.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@
2525
exit 1
2626
fi
2727
##Fake Nvidia Driver
28-
curl -qfsSL "https://github.com/VHSgunzo/runimage-fake-nvidia-driver/raw/refs/heads/main/fake-nvidia-driver.tar" | tar -xvf- -C "${RIM_ROOTFS}"
28+
if [[ "$(uname -m | tr -d '[:space:]')" == "x86_64" ]]; then
29+
curl -qfsSL "https://github.com/VHSgunzo/runimage-fake-nvidia-driver/raw/refs/heads/main/fake-nvidia-driver.tar" | tar -xvf- -C "${RIM_ROOTFS}"
30+
fi
2931
##Base Deps
3032
build_image()
3133
{

0 commit comments

Comments
 (0)