X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Farchive.py;h=77f400b41a432eed66aa6439b9faea1081a90714;hb=1f50da26dd16e8e86b946ae8189c7f773fce70f4;hp=bc67c2d9a7492278417c69e0d22bb4aee0d687f1;hpb=9b4992d01d1885b8418253930424afca014c2e5a;p=dak.git diff --git a/daklib/archive.py b/daklib/archive.py index bc67c2d9..77f400b4 100644 --- a/daklib/archive.py +++ b/daklib/archive.py @@ -672,7 +672,8 @@ class ArchiveUpload(object): sourcedir = os.path.join(self.directory, 'source') if not os.path.exists(sourcedir): - subprocess.check_call(["dpkg-source", "--no-copy", "-x", dsc_path, sourcedir], shell=False) + devnull = open('/dev/null', 'w') + subprocess.check_call(["dpkg-source", "--no-copy", "--no-check", "-x", dsc_path, sourcedir], shell=False, stdout=devnull) if not os.path.isdir(sourcedir): raise Exception("{0} is not a directory after extracting source package".format(sourcedir)) return sourcedir