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_deb.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'scripts/build_deb.sh') 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}" -- cgit