From f6fb173ee61ae6e6ca47b1665c2657dbd670cde3 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Wed, 3 Apr 2019 16:53:51 +0300 Subject: [PATCH] [templates] Fix conda/meta.yaml template resolution {{ group }} -> (( group )) (closes #22) --- bob/devtools/templates/conda/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bob/devtools/templates/conda/meta.yaml b/bob/devtools/templates/conda/meta.yaml index 3106e672..c5f17a28 100644 --- a/bob/devtools/templates/conda/meta.yaml +++ b/bob/devtools/templates/conda/meta.yaml @@ -52,7 +52,7 @@ test: about: summary: (( title )) - home: https://www.idiap.ch/software/{{ group }}/ + home: https://www.idiap.ch/software/(( group ))/ license: (% if license == 'gplv3' %)GNU General Public License v3 (GPLv3)(% else %)BSD 3-Clause(% endif %) license_family: (% if license == 'gplv3' %)GPL(% else %)BSD(% endif %) license_file: (% if license == 'gplv3' %)../COPYING(% else %)../LICENSE(% endif %) -- GitLab