Skip to content

Commit 1ecf550

Browse files
committed
Replace react_checkout_path with react_app_path
1 parent 21e1818 commit 1ecf550

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tasks/configure.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@
22
- name: Copy environment variables file
33
template:
44
src: env.j2
5-
dest: "{{ react_checkout_path }}/.env"
5+
dest: "{{ react_app_path }}/.env"
66
mode: 0644
77
owner: "{{ react_system_user }}"
88
group: "{{ react_system_group }}"
99

1010
- name: Install Javascript requirements
1111
shell: yarn install
1212
args:
13-
chdir: "{{ react_checkout_path }}"
13+
chdir: "{{ react_app_path }}"
1414
become: True
1515
become_user: "{{ react_system_user }}"
1616

1717
- name: Compile Javascript
1818
shell: yarn build
1919
args:
20-
chdir: "{{ react_checkout_path }}"
20+
chdir: "{{ react_app_path }}"
2121
become: True
2222
become_user: "{{ react_system_user }}"
2323

0 commit comments

Comments
 (0)