We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5586d74 commit ecd533cCopy full SHA for ecd533c
x.py
@@ -121,10 +121,14 @@ def format_(args):
121
122
def prune(args):
123
shutil.rmtree("target", ignore_errors=True)
124
+ Path("Cargo.lock").unlink(missing_ok=True)
125
126
for target_dir in gen_examples("target"):
127
shutil.rmtree(target_dir, ignore_errors=True)
128
129
+ for lock_file in gen_examples("Cargo.lock"):
130
+ lock_file.unlink(missing_ok=True)
131
+
132
for nox_dir in gen_examples(".nox"):
133
shutil.rmtree(nox_dir, ignore_errors=True)
134
0 commit comments