From d5f83eb56ee8ff1a33f7fff43af058ba507568ef Mon Sep 17 00:00:00 2001 From: Seth Flynn Date: Mon, 20 Jan 2025 04:58:54 -0500 Subject: [PATCH] fix(download): use full file name for appimage Signed-off-by: Seth Flynn --- src/download/linux.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/download/linux.md b/src/download/linux.md index 99914865..f816a412 100644 --- a/src/download/linux.md +++ b/src/download/linux.md @@ -77,8 +77,8 @@ After downloading the AppImage, open your file manager and make it [executable]( ### CLI ```bash -curl -fsSLo PrismLauncher.AppImage https://github.com/PrismLauncher/PrismLauncher/releases/download/{{version.current}}/PrismLauncher-Linux-x86_64.AppImage -chmod +x ./PrismLauncher.AppImage +curl -LO https://github.com/PrismLauncher/PrismLauncher/releases/download/{{version.current}}/PrismLauncher-Linux-x86_64.AppImage +chmod +x ./PrismLauncher-Linux-x86_64.AppImage ./PrismLauncher.AppImage ```