Просмотр исходного кода

be more specific on GIT not found error

pull/2217/head
ikkemaniac 3 лет назад
Родитель
Сommit
3d902b7fe7
1 измененных файлов: 3 добавлений и 3 удалений
  1. +3
    -3
      roles/matrix-base/tasks/setup_matrix_base.yml

+ 3
- 3
roles/matrix-base/tasks/setup_matrix_base.yml Просмотреть файл

@@ -54,14 +54,14 @@
msg: >- msg: >-
Couldn't find GIT on the local machine. Continuing without saving the GIT hash. Couldn't find GIT on the local machine. Continuing without saving the GIT hash.
You can disable saving the GIT hash by setting 'matrix_playbook_commit_hash_preservation_enabled: false' in vars.yml You can disable saving the GIT hash by setting 'matrix_playbook_commit_hash_preservation_enabled: false' in vars.yml
when: "git_describe.stderr.find('not found') != -1"
when: "git_describe.stderr.find('git: not found') != -1"


- name: GIT hash error
- name: Get GIT hash error
ansible.builtin.fail: ansible.builtin.fail:
msg: >- msg: >-
Error when trying to get the GIT hash. Error when trying to get the GIT hash.
You can disable saving the GIT hash by setting 'matrix_playbook_commit_hash_preservation_enabled: false' in vars.yml You can disable saving the GIT hash by setting 'matrix_playbook_commit_hash_preservation_enabled: false' in vars.yml
when: "git_describe.stderr.find('not found') == -1"
when: "git_describe.stderr.find('git: not found') == -1"


when: "matrix_playbook_commit_hash_preservation_enabled|bool" when: "matrix_playbook_commit_hash_preservation_enabled|bool"




Загрузка…
Отмена
Сохранить