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 b4f6504 commit 15a5489Copy full SHA for 15a5489
ci/fireci/fireci/dir_utils.py
@@ -51,7 +51,7 @@ def rmglob(pattern: str) -> int:
51
for file in glob.glob(os.path.expanduser(pattern)):
52
path = pathlib.Path(file)
53
if path.is_dir():
54
- rmdir(path)
+ rmdir(file)
55
else:
56
_logger.debug(f"Deleting file: {path}")
57
os.remove(path)
0 commit comments