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