From a2bec9ba01e9256bc40b446b2ebbf85aa6c41516 Mon Sep 17 00:00:00 2001 From: Nick Gregory Date: Tue, 25 Feb 2025 17:33:24 +0000 Subject: [PATCH 1/2] correct extra files ref issue introduced in 0c80f9b --- constructor/nsis/main.nsi.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/constructor/nsis/main.nsi.tmpl b/constructor/nsis/main.nsi.tmpl index 59f35abe..9b94d3e8 100644 --- a/constructor/nsis/main.nsi.tmpl +++ b/constructor/nsis/main.nsi.tmpl @@ -1265,7 +1265,7 @@ Section "Install" File {{ conda_exe }} File {{ pre_uninstall }} -{%- for path, files in extra_files | items %} +{%- for path, files in EXTRA_FILES | items %} SetOutPath {{ path }} {%- for file in files %} File {{ file }} From 38185ef8a92b36a999bd227ea7735fa738d9b1ce Mon Sep 17 00:00:00 2001 From: Nick Gregory Date: Tue, 25 Feb 2025 17:46:50 +0000 Subject: [PATCH 2/2] update news --- news/942-fix-win-extra_files | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 news/942-fix-win-extra_files diff --git a/news/942-fix-win-extra_files b/news/942-fix-win-extra_files new file mode 100644 index 00000000..c317176e --- /dev/null +++ b/news/942-fix-win-extra_files @@ -0,0 +1,19 @@ +### Enhancements + +* + +### Bug fixes + +* Fix extra_file functionality on exe installers. (#942) + +### Deprecations + +* + +### Docs + +* + +### Other + +*