X-Git-Url: https://git.ralfj.de/auto-debuild.git/blobdiff_plain/a3a4796a2966d282b2d08475a8ad3a3d9027e312..7683491ebe972088c3a3147f1766e214f7753b6a:/auto_debuild.py diff --git a/auto_debuild.py b/auto_debuild.py index ab04dc0..8ef290b 100755 --- a/auto_debuild.py +++ b/auto_debuild.py @@ -191,7 +191,7 @@ def createDebianFiles(config): def buildDebianPackage(config): commands = ['dpkg-checkbuilddeps', 'debian/rules clean', 'debian/rules build', 'fakeroot debian/rules binary', 'debian/rules clean'] - command = ['nice', 'bash', '-c', ' && '.join(commands)] + command = ['bash', '-c', ' && '.join(commands)] # make it all one command, so we don't have to open and close the chroot too often subprocess.check_call(commandInBuildEnv(config, command)) shutil.rmtree('debian') # it only contains what we just created