From 8c9e146a6cc404cd5f29084c8435c88293c361ca Mon Sep 17 00:00:00 2001 From: Maksim Totmin Date: Sun, 31 May 2026 18:24:07 +0700 Subject: [PATCH] Add wasmtime to AppImage build for HASHAB signing --- scripts/build-appimage.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/build-appimage.sh b/scripts/build-appimage.sh index b257abf..cd39664 100755 --- a/scripts/build-appimage.sh +++ b/scripts/build-appimage.sh @@ -54,6 +54,8 @@ install_pyinstaller() { "$VENV_DIR/bin/pip" install pyinstaller # Install project dependencies for bundling "$VENV_DIR/bin/pip" install -r "$PROJECT_DIR/requirements.txt" + # Install wasmtime for HASHAB signing (iPod Nano 6G/7G) + "$VENV_DIR/bin/pip" install wasmtime } download_appimagetool() {