Stefan Metzmacher <metze@xxxxxxxxx> wrote: > Hi Eric, > > > diff --git a/make-debs.sh b/make-debs.sh > > index 136b79e..aea05f0 100755 > > --- a/make-debs.sh > > +++ b/make-debs.sh > > @@ -20,7 +20,10 @@ set -o pipefail > > > > # Create dir for build > > base=${1:-/tmp/release} > > -codename=$(lsb_release -sc) > > + > > +# UNRELEASED here means debuild won't prompt for signing > > +codename=UNRELEASED > > + > > releasedir=$base/$(lsb_release -si)/liburing > > rm -rf $releasedir > > mkdir -p $releasedir > > You can use DEBUILD_DPKG_BUILDPACKAGE_OPTS="--no-sign" in ~/.devscripts > > Or we could make it possible to pass arguments down to 'debuild', > e.g. '-us -uc'. I'm also fine with doing that by default. Yes, I extended the commit message in v2 to note "UNRELEASED" is also helpful in communicating the package is an unofficial Debian package. This is helpful tidbit since an official Debian package now exists.