From 6b09fc1da3d0a68daf60d41f4cd0c127a0541049 Mon Sep 17 00:00:00 2001 From: David Young Date: Sat, 21 Mar 2026 09:38:39 -0600 Subject: [PATCH] fixing working directory --- compile.conf | 1 + install-compiled.sh | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/compile.conf b/compile.conf index 6286dcd..555b82b 100644 --- a/compile.conf +++ b/compile.conf @@ -35,4 +35,5 @@ version=1.1.1 git=https://github.com/Waffleslop/POTACAT.git install=$HOME/.local/bin/POTACAT.AppImage desktop=$HOME/.local/share/HamPack/desktop/potacat.desktop +gui=true steps=bash $HOME/.local/share/HamPack/patch-potacat.sh, npm install, npm run dist:linux, mv dist/*.AppImage $HOME/.local/bin/POTACAT.AppImage \ No newline at end of file diff --git a/install-compiled.sh b/install-compiled.sh index 9737de4..ffccaad 100755 --- a/install-compiled.sh +++ b/install-compiled.sh @@ -248,6 +248,10 @@ process_app() { run_steps "$app" "$steps" install_desktop "$desktop" save_installed_version "$app" "$version" + + # Return to a safe directory after build + cd "$HOME" + echo " $app $version installed successfully." }