We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21e1818 commit 1ecf550Copy full SHA for 1ecf550
tasks/configure.yml
@@ -2,22 +2,22 @@
2
- name: Copy environment variables file
3
template:
4
src: env.j2
5
- dest: "{{ react_checkout_path }}/.env"
+ dest: "{{ react_app_path }}/.env"
6
mode: 0644
7
owner: "{{ react_system_user }}"
8
group: "{{ react_system_group }}"
9
10
- name: Install Javascript requirements
11
shell: yarn install
12
args:
13
- chdir: "{{ react_checkout_path }}"
+ chdir: "{{ react_app_path }}"
14
become: True
15
become_user: "{{ react_system_user }}"
16
17
- name: Compile Javascript
18
shell: yarn build
19
20
21
22
23
0 commit comments