From fbf10526847f772471842a24070c6ea38b052621 Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Thu, 21 Jul 2022 18:00:10 +0200 Subject: [PATCH] Update to 2022-07-21 18:00 --- roles/appsmith/tasks/install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/appsmith/tasks/install.yml b/roles/appsmith/tasks/install.yml index a72e91e..2147b41 100644 --- a/roles/appsmith/tasks/install.yml +++ b/roles/appsmith/tasks/install.yml @@ -117,7 +117,7 @@ path: "{{ appsmith_root_dir }}/src/app/client" - name: Install NodeJS dependencies - command: ./node_modules/yarn/bin/yarn install + command: unset http_proxy; unset https_proxy; unset all_proxy; && ./node_modules/yarn/bin/yarn install args: chdir: "{{ appsmith_root_dir }}/src/app/client"