Skip to content

Commit 9430fef

Browse files
committed
appimage: copy helper scripts for good
1 parent 4bc0c3f commit 9430fef

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

cmake/Deployment/Linux/AppImage/AppRun

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ APP_SUFFIX=""
1111
[[ "$@" =~ '--platform=vkkhrdisplay' ]] && APP_SUFFIX=-vkkhrdisplay
1212
[[ "$@" =~ '--platform=vulkan' ]] && APP_SUFFIX=-vkkhrdisplay
1313
[[ "$@" =~ '--platform=vnc' ]] && APP_SUFFIX=-vnc
14-
[[ "$@" =~ '--platform=help' ]] && echo "Valid options for --ui-mode: cli, x11, wayland, eglfs, vkkhrdisplay, vnc" && exit 1
14+
[[ "$@" =~ '--platform=help' ]] && echo "Valid options for --platform: cli, x11, wayland, eglfs, vkkhrdisplay, vnc" && exit 1
1515

1616
exec "${APPDIR}/usr/bin/ossia-score${APP_SUFFIX}" "$@"

cmake/Deployment/Linux/AppImage/Recipe.llvm

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,10 @@ cmake --install . --component Devel --prefix "$SDK_DIR/usr"
6262
)
6363

6464
# Copy helper scripts
65-
cp "$SOURCE_DIR/cmake/Deployment/Linux/Raspberry/*" "$APP_DIR/usr/bin/"
65+
echo "Copy helper scripts"
66+
ls "$SOURCE_DIR/cmake/Deployment/Linux/Raspberry/"
67+
cp "$SOURCE_DIR/cmake/Deployment/Linux/Raspberry/"* "$APP_DIR/usr/bin/"
68+
ls "$APP_DIR/usr/bin/"
6669

6770
# Copy pixmaps
6871
cp "$APP_DIR/usr/share/applications/ossia-score.desktop" "$APP_DIR/"

0 commit comments

Comments
 (0)