From: Jakob Cornell Date: Wed, 28 Sep 2022 02:31:13 +0000 (-0500) Subject: Don't ask for confirmation in build helper X-Git-Tag: strikebot-0.0.7~18 X-Git-Url: https://jcornell.net/gitweb/gitweb.cgi?a=commitdiff_plain;h=ebfdec12a1f7c710e9a9c9a49a2e5511172cce2c;p=counting.git Don't ask for confirmation in build helper --- diff --git a/build_helper.py b/build_helper.py index 33d2349..c747894 100644 --- a/build_helper.py +++ b/build_helper.py @@ -47,7 +47,7 @@ if args.cmd == "build": p.unlink() # regenerate the "orig" tarball from the current source - run(["dh_make", "--python", "--createorig", "-p", "strikebot_" + version], cwd = upstream_root) + run(["dh_make", "--yes", "--python", "--createorig", "-p", "strikebot_" + version], cwd = upstream_root) # build the source package run(["debuild", "-i", "-us", "-uc", "-S"], cwd = upstream_root, check = True)