Browse Source

Allow usage of dependency files from the client

pull/133/head
Adam Johnson 6 years ago
parent
commit
934accc304
Signed by: Hoikas
GPG Key ID: 0B6515D6FF6F271E
  1. 1
      korman/exporter/outfile.py

1
korman/exporter/outfile.py

@ -366,6 +366,7 @@ class OutputFiles:
handle.write(i.file_data)
os.utime(dst_path, times)
elif i.file_path:
if i.file_path != dst_path:
shutil.copy2(i.file_path, dst_path)
else:
report.warn("No data found for dependency file '{}'. It will not be copied into the export directory.",

Loading…
Cancel
Save