mirror of
https://git.proxmox.com/git/debcargo-conf
synced 2025-04-28 13:09:51 +00:00
12 lines
343 B
Bash
Executable File
12 lines
343 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. ./vars.sh.frag
|
|
|
|
if ! shouldbuild "$BUILDDIR/debian/changelog" "$PKGDIR/debian/changelog" && \
|
|
! shouldbuild "$BUILDDIR/debian/changelog" "$DEBCARGO"; then
|
|
exit 0
|
|
fi
|
|
|
|
REALVER="$(sed -nre "s/.*Package .* (.*) from crates.io.*/\1/gp" "$PKGDIR/debian/changelog" | head -n1)"
|
|
run_debcargo --no-overlay-write-back --changelog-ready
|