From ba655d126c07d6998b471fee56e5e9955b73ad62 Mon Sep 17 00:00:00 2001 From: Maikel Linke Date: Mon, 25 Sep 2023 17:00:41 +1000 Subject: [PATCH] Add change condition on for linting We actually know that the file is not there because we just created a new build directory but it's good style to add these things. --- roles/deploy/tasks/deploy.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/deploy/tasks/deploy.yml b/roles/deploy/tasks/deploy.yml index c1968d6c7..fa8b81ae7 100644 --- a/roles/deploy/tasks/deploy.yml +++ b/roles/deploy/tasks/deploy.yml @@ -64,6 +64,7 @@ " args: chdir: "{{ build_path }}" + creates: "{{ build_path }}/.bundle/config" become: true become_user: "{{ app_user }}"