particle-os-cli/template/templates/modules/files/files.j2
Gerald Pinder 910e0434b6
refactor: Move templates to their own crate (#83)
This PR logically separates out parts of the code to their own crates. This will be useful for future Tauri App development.
2024-02-25 14:45:33 -06:00

5 lines
141 B
Django/Jinja

{%- if let Some(files) = module.get_files_list() %}
{%- for (src, dest) in files %}
COPY {{ src }} {{ dest }}
{%- endfor %}
{%- endif %}