From a0503c8c40ed2060fdc6c92f08bdb28f9e0d3183 Mon Sep 17 00:00:00 2001 From: Alex Pyrgiotis Date: Mon, 9 Jan 2023 15:30:52 +0200 Subject: [PATCH] install: Do not create Debian source package twice --- install/linux/build-deb.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install/linux/build-deb.py b/install/linux/build-deb.py index 1901122..5d4303c 100755 --- a/install/linux/build-deb.py +++ b/install/linux/build-deb.py @@ -31,8 +31,9 @@ def main(): shutil.rmtree(deb_dist_path) print("* Building DEB package") + # This command also builds the Debian source package, and then creates the DEB + # package, meaning that we don't need to run `sdist_dsc` as well. run(["python3", "setup.py", "--command-packages=stdeb.command", "bdist_deb"]) - run(["python3", "setup.py", "--command-packages=stdeb.command", "sdist_dsc"]) print("") print("* To install run:")