From 4bd56f78ed1b52c36f1431e7fb2b5b5f6a71af94 Mon Sep 17 00:00:00 2001 From: Alexis Date: Wed, 18 Dec 2024 02:24:02 -0800 Subject: [PATCH] testing sourcing if it's the cause of failure... --norun --- .build-scripts/exports/tools.sh | 2 +- .github/workflows/build-linux-gnu-x86_64-appimage.yml | 1 - src/setup.rs | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.build-scripts/exports/tools.sh b/.build-scripts/exports/tools.sh index 305d7edc..e3b4cdeb 100755 --- a/.build-scripts/exports/tools.sh +++ b/.build-scripts/exports/tools.sh @@ -16,7 +16,7 @@ SCRIPT=`$REALPATH_EXE "$0"` SCRIPT_DIR=`$DIRNAME_EXE "$SCRIPT"` PROJECT_ROOT=`$REALPATH_EXE $SCRIPT_DIR/../..` -cd $PROJECT_ROOT +# cd $PROJECT_ROOT # Shell Command Locations if [ -z "$ROOT_PATH" ]; then diff --git a/.github/workflows/build-linux-gnu-x86_64-appimage.yml b/.github/workflows/build-linux-gnu-x86_64-appimage.yml index eeb03a39..78d1d56c 100644 --- a/.github/workflows/build-linux-gnu-x86_64-appimage.yml +++ b/.github/workflows/build-linux-gnu-x86_64-appimage.yml @@ -92,7 +92,6 @@ jobs: # Sets the build timestamp to the current commit to make builds reproducible export SOURCE_DATE_EPOCH="`git --no-pager log -1 --format="%at"`" - export PATH="${{ github.workspace }}/.tools:$PATH" # Release is already specified by cargo appimage # https://github.com/StratusFearMe21/cargo-appimage/issues/30 diff --git a/src/setup.rs b/src/setup.rs index 2f873c4b..a1e2314e 100644 --- a/src/setup.rs +++ b/src/setup.rs @@ -164,6 +164,7 @@ pub(super) fn start() -> Result<(), String> { set_panic_hook(); // Allows handling properly shutting down with SIGINT + #[cfg(not(any(target_os = "android", target_os = "ios")))] #[cfg(any(target_family = "unix", target_family = "windows"))] { debug!("Setting SIGINT hook...");