From: Holger Levsen Date: Thu, 25 Aug 2011 16:00:43 +0000 (+0200) Subject: dont write upload.log as we dont have write perms to the current directory X-Git-Url: https://git.uhu-banane.org/?a=commitdiff_plain;h=15847a12bd850b7e12b1326f0879965db3ab36a2;p=profitbricks%2Fjenkins-build-scripts.git dont write upload.log as we dont have write perms to the current directory --- diff --git a/build.py b/build.py index 1cf6378..9fd3afc 100755 --- a/build.py +++ b/build.py @@ -124,7 +124,7 @@ def read_file(path): return result def dput_package_upload(changes_path): - cmd = [BIN_DPUT, '-c', '%s' %(DPUT_CF), 'profitbricks', '%s' %(changes_path)] + cmd = [BIN_DPUT, '-U', '-c', '%s' %(DPUT_CF), 'profitbricks', '%s' %(changes_path)] logger.debug( 'Trying to execute: "%s"' %(cmd)