Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
gerblesh committed Nov 25, 2024
1 parent d2014a7 commit 41fb293
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ container-rpm-build: container-install-deps spec builddep build-rpm
for RPM in ${UBLUE_ROOT}/noarch/*.rpm; do
NAME="$(rpm -q $RPM --queryformat='%{NAME}')"
mkdir -p "${UBLUE_ROOT}/ublue-os/rpms/"
cp "${RPM}" "${UBLUE_ROOT}/ublue-os/rpms/$(rpm -q "${RPM}" --queryformat='%{NAME}.%{ARCH}.rpm')"
cp "${RPM}" "${UBLUE_ROOT}/ublue-os/rpms/$(rpm -q "${RPM}" --queryformat='%{NAME}.%{ARCH}}.rpm')"
done

output:
Expand All @@ -76,7 +76,9 @@ container-test:
echo "Waiting for systemd to finish booting..."
sleep 1
done
podman exec -t ublue-update-test systemd-run --user --machine podman@ --pipe --quiet sudo /usr/bin/ublue-update --dry-run
# podman exec -t ublue-update-test systemd-run --user --machine podman@ --pipe --quiet sudo /usr/bin/ublue-update --dry-run
podman exec -t ublue-update-test systemctl start ublue-update.service
podman exec -t ublue-update-test systemctl status ublue-update.service
podman rm -f ublue-update-test
clean:
rm -rf "$UBLUE_ROOT"

0 comments on commit 41fb293

Please sign in to comment.