[appimage] Fix AppRun: claude-desktop explizit, nicht find|head
All checks were successful
Build AppImage / build (push) Successful in 5m43s
All checks were successful
Build AppImage / build (push) Successful in 5m43s
find|head -1 traf xdg-open (alphabetisch vor claude-desktop) statt unsere App. Resultat: AppImage zeigte nur xdg-open --help statt zu starten.
This commit is contained in:
parent
819a65e8ae
commit
01ddc7c938
1 changed files with 3 additions and 3 deletions
|
|
@ -74,9 +74,9 @@ jobs:
|
||||||
export GSETTINGS_SCHEMA_DIR="${HERE}/usr/share/glib-2.0/schemas:${GSETTINGS_SCHEMA_DIR}"
|
export GSETTINGS_SCHEMA_DIR="${HERE}/usr/share/glib-2.0/schemas:${GSETTINGS_SCHEMA_DIR}"
|
||||||
export GDK_PIXBUF_MODULE_FILE="${HERE}/usr/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache"
|
export GDK_PIXBUF_MODULE_FILE="${HERE}/usr/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache"
|
||||||
|
|
||||||
# Tauri-Binary aufrufen
|
# Tauri-Binary aufrufen — Name aus Cargo.toml [package.name]
|
||||||
BIN=$(find "${HERE}/usr/bin" -maxdepth 1 -type f -executable | head -1)
|
# (find ... | head -1 zog faelschlich xdg-open statt unsere App)
|
||||||
exec "$BIN" "$@"
|
exec "${HERE}/usr/bin/claude-desktop" "$@"
|
||||||
APPRUN_EOF
|
APPRUN_EOF
|
||||||
chmod +x "$APPDIR/AppRun"
|
chmod +x "$APPDIR/AppRun"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue