diff options
| author | Rubén Beltrán del Río <jj@r.bdr.sh> | 2026-04-05 21:25:35 +0200 |
|---|---|---|
| committer | Rubén Beltrán del Río <jj@r.bdr.sh> | 2026-04-06 00:46:50 +0200 |
| commit | 100fcf7bdf7a5e711475e6173f28ca6d407483bd (patch) | |
| tree | aa63de7116b06755a9b531d3d0ac8ddbbea1e349 /scripts/build_appimage.sh | |
| parent | d9245d341ed1f258a3dd1073cdfa656115c5b26d (diff) | |
Move rest of Makefile and scripts to the justfile
Diffstat (limited to 'scripts/build_appimage.sh')
| -rwxr-xr-x | scripts/build_appimage.sh | 4 |
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}" |