Fixed archiver

This commit is contained in:
itdominator 2021-12-05 21:23:30 -06:00
parent bed8af256c
commit 2ddfe0a07d
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ class WidgetFileActionMixin:
pre_command = self.arc_command_buffer.get_text(sItr, eItr, False)
pre_command = pre_command.replace("%o", save_target)
pre_command = pre_command.replace("%N", ' '.join(paths))
command = f"{view.terminal_app} -e '{command}'"
command = f"{view.terminal_app} -e '{pre_command}'"
view.execute(command, start_dir=None, use_os_system=True)