]> 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:53:40 +0000 (17:53 +0200)
committerRobin Wittler <robin.wittler@profitbricks.com>
Tue, 9 Aug 2011 15:53:40 +0000 (17:53 +0200)
build.py

index 90bfd3369eee0b151f2740b10f1843629e65332e..44a064e8dd0852762cafcfc4b65a4f356b49fb44 100755 (executable)
--- a/build.py
+++ b/build.py
@@ -338,6 +338,11 @@ if __name__ == '__main__':
             )
         logger.info('debian/changelog written')
 
+        cmd = ['/usr/bin/git', 'add', '-A']
+        subprocess.check_call(cmd)
+        cmd = ['/usr/bin/git', 'commit', '-a', '-m', 'add changelog']
+        subprocess.check_call(cmd)
+
     if not GIT_COMMITTER_EMAIL:
         for commit in repo.commits():
             if commit.id == GIT_NEW_ID: