]> Frank Brehm's Git Trees - profitbricks/jenkins-build-scripts.git/commit
debian_build: fix variable usage and usage of check_call-method
authorMathias Klette <mathias.klette@profitbricks.com>
Tue, 28 May 2013 09:48:49 +0000 (11:48 +0200)
committerMathias Klette <mathias.klette@profitbricks.com>
Tue, 28 May 2013 09:48:49 +0000 (11:48 +0200)
commit2162c973fd777c0095b5cd3c68263fe23dc95483
treec601dcca5415c058759475588d65df7c25b1b4e4
parent3327b798fbfb8a0730facb3fb5a97de86c9f7758
debian_build: fix variable usage and usage of check_call-method

we shall stay with DISTRIBUTION envionment variable yet: let's force the user to
provide the necessary distribution in Jenkins GUI or in call_jenkins.
in the next step we try to remove this parameter from jenkins and base the
decision of what distribution to use on what we find in the changelog. question
to be answered for this:
 stable -> squeeze?
 our old values like 'production', pau, ppu, ... -> ??
 wheezy -> wheezy?

the check_call() method from subprocess seems to return the exit code of command
ran as int. this doesn't behave well in current if-syntax, so we changed it to
match for success code "0" explicitely.
debian_build.py