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_rpm.sh | |
| parent | d9245d341ed1f258a3dd1073cdfa656115c5b26d (diff) | |
Move rest of Makefile and scripts to the justfile
Diffstat (limited to 'scripts/build_rpm.sh')
| -rwxr-xr-x | scripts/build_rpm.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/build_rpm.sh b/scripts/build_rpm.sh index efffef3..ac2510d 100755 --- a/scripts/build_rpm.sh +++ b/scripts/build_rpm.sh @@ -11,7 +11,6 @@ channel=$5 version=`just version` staging="$(mktemp -d)" -just dist cp _build/meson-dist/map-${version}.tar.xz "${staging}/" just vendor "${staging}/vendor" @@ -31,6 +30,5 @@ podman run --rm -v "${staging}:/build:Z" \ cp ~/rpmbuild/RPMS/${arch}/map-${version}-1.*.rpm /build/out/ " -mkdir -p dist -cp ${staging}/out/*.rpm "dist/${app_name}-${arch}-${channel}-${distro}.rpm" +cp ${staging}/out/*.rpm "_dist/${app_name}-${arch}-${channel}-${distro}.rpm" rm -rf "${staging}" |