From ebfdec12a1f7c710e9a9c9a49a2e5511172cce2c Mon Sep 17 00:00:00 2001 From: Jakob Cornell Date: Tue, 27 Sep 2022 21:31:13 -0500 Subject: [PATCH] Don't ask for confirmation in build helper --- build_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.30.2