Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion cfbs/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,6 @@ def _get_modules_by_url(name) -> list:
% (module_name, input_path),
default="no",
):
rm(input_path)
files.append(input_path)
msg += "\n - Removed input data for module '%s'" % module_name
log.debug("Deleted module data '%s'" % input_path)
Expand Down Expand Up @@ -566,6 +565,8 @@ def _get_modules_by_url(name) -> list:
msg = msg[4:] # Remove the '\n - ' part of the message

config.save()
for input_path in files:
rm(input_path)
return CFBSCommandGitResult(0, changes_made, msg, files)


Expand Down
Loading