From: Holger Levsen Date: Wed, 8 Feb 2012 17:05:52 +0000 (+0100) Subject: lets try to get rid of the double clone X-Git-Url: https://git.uhu-banane.org/?a=commitdiff_plain;h=775ce2cfd59f111be858511c8a5b7d90b4acac26;p=profitbricks%2Fjenkins-build-scripts.git lets try to get rid of the double clone --- diff --git a/debian_build.py b/debian_build.py index 1d41f36..8853bbd 100755 --- a/debian_build.py +++ b/debian_build.py @@ -458,7 +458,7 @@ if __name__ == '__main__': # strip epoch if ":" in version: version = version.split(":", 1)[1] - changes_file = os.path.join(GIT_TARGET_WORKSPACE, 'build-area/result/', '%s_%s_amd64.changes' % (pkg_name, version)) + changes_file = os.path.join(CWD, 'build-area/', '%s_%s_amd64.changes' % (pkg_name, version)) # display changes file fh = open(changes_file, 'r') logger.info('%s' % (fh.read()))