]> git.pld-linux.org Git - projects/pld-builder.new.git/commitdiff
Use per builder log file names.
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Sun, 2 Oct 2011 14:21:13 +0000 (14:21 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    PLD_Builder/buildlogs.py -> 1.28

PLD_Builder/buildlogs.py

index e874278f70f62a6f1b25a97f3f3e89cf029e6de9..2779ae934f26e80e4c595227fa337884b0978585 100644 (file)
@@ -31,11 +31,11 @@ class Buildlogs_Queue:
 
         if failed: s = "FAIL"
         else: s = "OK"
-        f = open(path.buildlogs_queue_dir + '/' + id + '.' + blogfile + ".info", "w")
+        f = open(path.buildlogs_queue_dir + '/' + config.builder + '.' + id + '.' + blogfile + ".info", "w")
         f.write("Status: %s\nEND\n" % s)
         f.close()
 
-        self.queue.append({'name': name, 'id': id + '.' + blogfile, 'failed': failed})
+        self.queue.append({'name': name, config.builder + '.' + id + '.' + blogfile, 'failed': failed})
 
     def flush(self):
         def desc(l):
This page took 0.064474 seconds and 4 git commands to generate.