We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23e1959 commit 995391cCopy full SHA for 995391c
.github/scripts/rmiso.py
@@ -1,7 +1,8 @@
1
import shutil
2
from pathlib import Path
3
4
-path = Path(__file__).parent.parent / "IsoSpecPy"
+path = Path(__file__).parent.parent.parent / "IsoSpecPy"
5
print(f"Removing IsoSpecPy directory at: {path}")
6
+print("Its contents are:", list(path.iterdir()))
7
shutil.rmtree(path, ignore_errors=True)
8
print("Done.")
0 commit comments