fixed issues after applying styling guide #37

Merged
muppeth merged 1 commit from fix_styling into staging 2024-11-29 14:36:11 +01:00
2 changed files with 4 additions and 2 deletions

View file

@ -2,7 +2,8 @@
- name: "[Check] - Check what cryptpad version is already installed"
command:
cmd: grep -m 1 version {{ cryptpad_path }}/package-lock.json | awk -F\" '{print $4}'
cmd: bash -c "grep -m 1 version {{ cryptpad_path }}/package-lock.json | awk -F'\"' '{print $4}'"
#grep -m 1 version {{ cryptpad_path }}/package-lock.json | awk -F\" '{print $4}'
register: 'cryptpad_version_installed'
- name: '[Check] - node_modules folder exists'

View file

@ -58,4 +58,5 @@
chdir: '{{ cryptpad_path }}/lib/plugins/sodium'
become: true
become_user: '{{ cryptpad_user }}'
notify: restart cryptpad
notify:
- 'Restart cryptpad'