Ubuntu Pastebin

Paste from neo at Wed, 7 Dec 2016 22:53:16 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
diff --git a/kubuntu-retry-builds b/kubuntu-retry-builds
index 406da17..a48a767 100755
--- a/kubuntu-retry-builds
+++ b/kubuntu-retry-builds
@@ -133,7 +133,7 @@ for build in rebuild_candidates:
     if build.dependencies != None:
         problem_found = "Waiting for %s" % build.dependencies
     #If there are no problems, retry the build
-    if problem_found == "":
+#    if problem_found == "":
         if build.can_be_retried:
             ka_print_good_stuff( "Retrying %s (%s) (%s)" % (build.source_package_name, arch, build.buildstate) )
             if not args.dry_run:
@@ -144,8 +144,8 @@ for build in rebuild_candidates:
             num_of_candidates_rebuilt += 1
         else:
             ka_print_error( "Can't retry: %s (%s)" % (build.source_package_name, arch) )
-    else:
-        ka_print_info(problem_found)
+#    else:
+#        ka_print_info(problem_found)
 
 
 #Print summary
Download as text