Skip to content

Commit 24bd258

Browse files
committed
[code] fix 32 bit routine
1 parent 4e51892 commit 24bd258

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

roles/code/tasks/install_apkfile.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,17 @@
55
# mode: 0755
66

77
### Current release - arm64 ###
8-
- name: Download arch arm64 APK
8+
- name: Download arch arm 64-bits APK
99
get_url:
1010
url: "{{ code_download_url }}/{{ code_apk_64bit_filename }}"
1111
dest: "{{ code_data_root_apk }}/{{ code_apk_64bit_filename }}"
1212
mode: "0644"
1313
timeout: "{{ download_timeout }}"
14-
when: code_apk_64bit_filename
1514

1615
### Future release - arm32 ###
17-
#- name: Download arch arm64 APK
16+
#- name: Download arch arm 32-bits APK
1817
# get_url:
19-
# url: "{{ code_download_url }}/{{ code_apk_64bit_filename }}"
20-
# dest: "{{ code_data_root_apk }}/{{ code_apk_64bit_filename }}"
18+
# url: "{{ code_download_url }}/{{ code_apk_32bit_filename }}"
19+
# dest: "{{ code_data_root_apk }}/{{ code_apk_32bit_filename }}"
2120
# mode: "0644"
2221
# timeout: "{{ download_timeout }}"
23-
# when: code_apk_64bit_filename

0 commit comments

Comments
 (0)