hotfix: add print statement for moving

This commit is contained in:
Louis Abel 2023-08-09 18:18:43 -07:00
parent d232ddce1d
commit e6627c48b7
Signed by: label
GPG Key ID: 2A6975660E424560
1 changed files with 1 additions and 0 deletions

View File

@ -187,6 +187,7 @@ class Import:
print(f'{dest_path} already exists, skipping')
os.remove(source_path)
else:
print(f'Moving {source_path} to {dest_path}')
shutil.move(src=source_path, dst=dest_path)
if os.path.exists('/usr/sbin/restorecon'):
processor.run_proc_foreground_shell(f'/usr/sbin/restorecon {dest_path}')