Skip to content

Commit 6ad6c65

Browse files
committed
prune: dry-run gates bump_timestamp
1 parent 740db62 commit 6ad6c65

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/cmd-prune

+11-11
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@ else:
8686

8787
print(f"prune: new builds: {new_builds}")
8888

89+
if len(builds_to_delete) == 0 or args.dry_run:
90+
print(f"prune: not removing any builds")
91+
sys.exit(0)
92+
8993
# create a new builds list
9094
builds.raw()['builds'] = []
9195
for build in reversed(new_builds):
@@ -94,22 +98,18 @@ for build in reversed(new_builds):
9498

9599
builds.bump_timestamp()
96100

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)}")
102103

103104
# now delete other build dirs not in the manifest
104105
error_during_pruning = False
105106
for build in builds_to_delete:
106107
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}")
113113

114114
if error_during_pruning:
115115
sys.exit(1)

0 commit comments

Comments
 (0)