]> Frank Brehm's Git Trees - profitbricks/jenkins-build-scripts.git/commitdiff
add debug msg
authorRobin Wittler <robin.wittler@profitbricks.com>
Tue, 9 Aug 2011 15:47:33 +0000 (17:47 +0200)
committerRobin Wittler <robin.wittler@profitbricks.com>
Tue, 9 Aug 2011 15:47:33 +0000 (17:47 +0200)
build.py

index 362961572329607a5e272b12a8ce5dd359f77ea1..8ae94bf7345bc4553eda572b29d049853794f197 100755 (executable)
--- a/build.py
+++ b/build.py
@@ -297,10 +297,10 @@ if __name__ == '__main__':
 
         if ret:
             raise Exception('git log was not successfull')
-#        git_log_output = map(
-#                lambda x: x.rstrip(),
-#                cmd_obj.stdout.readlines()
-#        )
+        git_log_output = map(
+                lambda x: x.rstrip(),
+                cmd_obj.stdout.readlines()
+        )
 
 
         cmd = [
@@ -313,7 +313,7 @@ if __name__ == '__main__':
                 '--distribution',
                 '%s' %(options.distribution),
                 '--',
-                '%s' %(git_log.stdout.read())
+                '%s' %(git_log_output)
         ]
 
         logger.debug('This is cwd: %s' %(os.getcwd()))