Skip to content

Commit a285d2c

Browse files
fix: fix Jinja syntax
1 parent d2506ce commit a285d2c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

playbooks/roles/edxapp/tasks/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,8 +302,8 @@
302302
# --no-save is passed as a flag to npm install to avoid saving these dependencies to package.json. Otherwise,
303303
# running npm install without this flag causes modifications to the package.json and package-lock.json
304304
# files. In turn, these modified files cause issues with working with the edxapp repository.
305-
- name: Install extra node dependencies
306-
shell: "easy_install --version && npm install --no-save {{ item.name }"
305+
- name: Install private node dependencies
306+
shell: "easy_install --version && npm install --no-save '{{ item.name }'"
307307
with_items: "{{ EDXAPP_PRIVATE_NPM_REQUIREMENTS }}"
308308
args:
309309
chdir: "{{ edxapp_code_dir }}"

0 commit comments

Comments
 (0)