Skip to content

Commit

Permalink
Fix appimage build script
Browse files Browse the repository at this point in the history
  • Loading branch information
laggykiller committed Aug 11, 2024
1 parent 4b37f5e commit 435d25a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build_appimage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ cp ./sticker-convert.appdata.xml AppDir/usr/share/metainfo

# Bundling into appimage
wget https://github.com/AppImage/AppImageKit/releases/download/13/runtime-${SC_COMPILE_ARCH}
if [ ${SC_COMPILE_ARCH} == "aarch64" ]; then
if [ ${SC_COMPILE_ARCH} = "aarch64" ]; then
ARCH="arm_aarch64"
else
ARCH=${SC_COMPILE_ARCH}
Expand Down

0 comments on commit 435d25a

Please sign in to comment.