File tree 1 file changed +11
-11
lines changed
1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change 86
86
87
87
print (f"prune: new builds: { new_builds } " )
88
88
89
+ if len (builds_to_delete ) == 0 or args .dry_run :
90
+ print (f"prune: not removing any builds" )
91
+ sys .exit (0 )
92
+
89
93
# create a new builds list
90
94
builds .raw ()['builds' ] = []
91
95
for build in reversed (new_builds ):
@@ -94,22 +98,18 @@ for build in reversed(new_builds):
94
98
95
99
builds .bump_timestamp ()
96
100
97
- if len (builds_to_delete ) == 0 :
98
- print ("prune: not removing any builds" )
99
- else :
100
- buildids = [x .id for x in builds_to_delete ]
101
- print (f"prune: removing { ' ' .join (buildids )} " )
101
+ buildids = [x .id for x in builds_to_delete ]
102
+ print (f"prune: removing { ' ' .join (buildids )} " )
102
103
103
104
# now delete other build dirs not in the manifest
104
105
error_during_pruning = False
105
106
for build in builds_to_delete :
106
107
print (f"Pruning { build } " )
107
- if not args .dry_run :
108
- try :
109
- rmtree (os .path .join (builds_dir , build .id ))
110
- except Exception as e :
111
- error_during_pruning = True
112
- print (f"{ e } " )
108
+ try :
109
+ rmtree (os .path .join (builds_dir , build .id ))
110
+ except Exception as e :
111
+ error_during_pruning = True
112
+ print (f"{ e } " )
113
113
114
114
if error_during_pruning :
115
115
sys .exit (1 )
You can’t perform that action at this time.
0 commit comments