aboutsummaryrefslogtreecommitdiff
path: root/scripts/build_appimage.sh
diff options
context:
space:
mode:
authorRubén Beltrán del Río <jj@r.bdr.sh>2026-04-05 21:25:35 +0200
committerRubén Beltrán del Río <jj@r.bdr.sh>2026-04-06 00:46:50 +0200
commit100fcf7bdf7a5e711475e6173f28ca6d407483bd (patch)
treeaa63de7116b06755a9b531d3d0ac8ddbbea1e349 /scripts/build_appimage.sh
parentd9245d341ed1f258a3dd1073cdfa656115c5b26d (diff)
Move rest of Makefile and scripts to the justfile
Diffstat (limited to 'scripts/build_appimage.sh')
-rwxr-xr-xscripts/build_appimage.sh4
1 files changed, 1 insertions, 3 deletions
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}"