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_deb.sh | |
| parent | d9245d341ed1f258a3dd1073cdfa656115c5b26d (diff) | |
Move rest of Makefile and scripts to the justfile
Diffstat (limited to 'scripts/build_deb.sh')
| -rwxr-xr-x | scripts/build_deb.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/build_deb.sh b/scripts/build_deb.sh index 66b51fa..d7f978b 100755 --- a/scripts/build_deb.sh +++ b/scripts/build_deb.sh @@ -11,7 +11,6 @@ channel=$5 version=`just version` staging="$(mktemp -d)" -just dist cp _build/meson-dist/map-${version}.tar.xz "${staging}/${app_name}_${version}.orig.tar.xz" tar -xJf "${staging}/${app_name}_${version}.orig.tar.xz" -C "${staging}" mkdir -p ${staging}/${app_name}-${version} @@ -26,6 +25,5 @@ podman run --rm -v "${staging}:/build:Z" \ cp /build/${app_name}_${version}*_*.deb /build/out/ " -mkdir -p dist -cp ${staging}/out/*.deb "dist/${app_name}-${arch}-${channel}-${distro}.deb" +cp ${staging}/out/*.deb "_dist/${app_name}-${arch}-${channel}-${distro}.deb" rm -rf "${staging}" |