From 64a73fe1d1b824ac38cfb25b2c24c337a1f1b7ef Mon Sep 17 00:00:00 2001 From: Filip Gralinski Date: Sat, 15 Jan 2022 22:28:12 +0100 Subject: [PATCH] Fix URLs for downloading ACL templates --- hooks/post_gen_project.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hooks/post_gen_project.sh b/hooks/post_gen_project.sh index a58af38..264d82b 100755 --- a/hooks/post_gen_project.sh +++ b/hooks/post_gen_project.sh @@ -37,8 +37,8 @@ elif [ "{{ cookiecutter.latex_template }}" = "tacl" ]; then cp -r _latex-templates/tacl2018v2-template.tex {{cookiecutter.paper_id}}.tex cp -r _latex-templates/tacl2018v2-template-meta.tex metadata.tex elif [ "{{ cookiecutter.latex_template }}" = "acl" ]; then - wget 'https://raw.githubusercontent.com/acl-org/ACLPUB/master/templates/latex/acl.sty' - wget 'https://raw.githubusercontent.com/acl-org/ACLPUB/master/templates/latex/acl_natbib.bst' + wget 'https://raw.githubusercontent.com/acl-org/acl-style-files/master/latex/acl.sty' + wget 'https://raw.githubusercontent.com/acl-org/acl-style-files/master/latex/acl_natbib.bst' # fix_noexpand_issue acl2020.sty cp -r _latex-templates/acl-template.tex {{cookiecutter.paper_id}}.tex cp -r _latex-templates/acl-template-meta.tex metadata.tex