From 1bbdd680157d902db90aac4ac19921567584fb70 Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Fri, 22 Jul 2022 10:01:54 +0200 Subject: [PATCH] Update to 2022-07-22 10:01 --- roles/appsmith/tasks/install.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/roles/appsmith/tasks/install.yml b/roles/appsmith/tasks/install.yml index 2147b41..249429f 100644 --- a/roles/appsmith/tasks/install.yml +++ b/roles/appsmith/tasks/install.yml @@ -117,9 +117,13 @@ path: "{{ appsmith_root_dir }}/src/app/client" - name: Install NodeJS dependencies - command: unset http_proxy; unset https_proxy; unset all_proxy; && ./node_modules/yarn/bin/yarn install + command: ./node_modules/yarn/bin/yarn install args: chdir: "{{ appsmith_root_dir }}/src/app/client" + environment: + http_proxy: "" + https_proxy: "" + all_proxy: "" - name: Build the client command: ./node_modules/.bin/craco --max-old-space-size=3072 build --config craco.build.config.js