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 0078f0f commit 20a1d7eCopy full SHA for 20a1d7e
release_zips/release_zips.py
@@ -48,9 +48,9 @@ def main():
48
shutil.rmtree(directory + "/.git", ignore_errors=True)
49
shutil.rmtree(directory + "/.github", ignore_errors=True)
50
shutil.rmtree(directory + "/.gitlab", ignore_errors=True)
51
- shutil.rmtree(directory + "/.docs", ignore_errors=True)
+ shutil.rmtree(directory + "/docs", ignore_errors=True)
52
53
- files = glob.glob(".*")
+ files = glob.glob(directory + ".*")
54
for f in files:
55
try:
56
f.unlink()
0 commit comments