From 46e98902a67b70b0ff4b64f64cd5489570c10ddd Mon Sep 17 00:00:00 2001
From: Benjamin Bertrand <benjamin.bertrand@esss.se>
Date: Tue, 29 May 2018 10:21:50 +0200
Subject: [PATCH] Fix molecule env download from url

By default, if the file exists locally, get_url will NOT download the
file.
force shall be set to true to force the file to be downloaded.
---
 tasks/create_conda_env.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tasks/create_conda_env.yml b/tasks/create_conda_env.yml
index 1b417f8..37ea22a 100644
--- a/tasks/create_conda_env.yml
+++ b/tasks/create_conda_env.yml
@@ -18,6 +18,7 @@
   get_url:
     url: "{{ env_file }}"
     dest: "{{ env_file_path }}"
+    force: true
     owner: conda
     group: users
     mode: 0644
-- 
GitLab