1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

Fail if we detect unknown architecture

This commit is contained in:
Aidan Fitzgerald 2018-10-18 17:10:41 -04:00
parent 447b33f854
commit 8e4dc59367
2 changed files with 6 additions and 1 deletions

View file

@ -32,6 +32,11 @@
# Download, verify, and link Gitea binary
- name: Fail if we detect unknown architecture
fail:
msg: "Could not find a binary for the CPU architecture \"{{ ansible_architecture }}\""
when: gitea_iset_suffix == "unknown"
- name: Download Gitea binary
get_url:
url: "{{ gitea_download_url }}"