From ab20c6ed8a5ea56e36ce50762b727215601f7a5f Mon Sep 17 00:00:00 2001 From: Filip Gralinski Date: Fri, 30 Apr 2021 12:38:57 +0200 Subject: [PATCH] Fix downloading and overwriting file --- hooks/post_gen_project.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/post_gen_project.sh b/hooks/post_gen_project.sh index 7b307e6..d0d594b 100755 --- a/hooks/post_gen_project.sh +++ b/hooks/post_gen_project.sh @@ -85,7 +85,7 @@ elif [ "{{ cookiecutter.latex_template }}" = "eacl" ]; then cp -r _latex-templates/acl2020-template-appendix.tex the-appendix.tex fi elif [ "{{ cookiecutter.latex_template }}" == "neurips" ]; then - wget https://media.neurips.cc/Conferences/NeurIPS2021/Styles/neurips_2021.sty + wget -O neurips_2021.sty https://media.neurips.cc/Conferences/NeurIPS2021/Styles/neurips_2021.sty cp -r _latex-templates/neurips-template.tex {{cookiecutter.paper_id}}.tex cp -r _latex-templates/neurips-template-meta.tex metadata.tex cp -r _latex-templates/neurips-checklist.tex checklist.tex