From 100fcf7bdf7a5e711475e6173f28ca6d407483bd Mon Sep 17 00:00:00 2001 From: Rubén Beltrán del Río Date: Sun, 5 Apr 2026 21:25:35 +0200 Subject: Move rest of Makefile and scripts to the justfile --- scripts/build_appimage.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'scripts/build_appimage.sh') diff --git a/scripts/build_appimage.sh b/scripts/build_appimage.sh index d39f506..b409961 100755 --- a/scripts/build_appimage.sh +++ b/scripts/build_appimage.sh @@ -12,7 +12,6 @@ linuxdeploy=$6 version=`just version` staging="$(mktemp -d)" -just dist tar -xJf "_build/meson-dist/map-${version}.tar.xz" -C "${staging}/" cp ${linuxdeploy} "${staging}/linuxdeploy.AppImage" @@ -32,6 +31,5 @@ podman run --rm -v "${staging}:/build:Z" \ mv /build/Map*.AppImage /build/out/ " -mkdir -p dist -mv ${staging}/out/*.AppImage "dist/${app_name}-${arch}-${channel}.AppImage" +mv ${staging}/out/*.AppImage "_dist/${app_name}-${arch}-${channel}.AppImage" rm -rf "${staging}" -- cgit