1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 10:57:55 +01:00

don't fail if exists

This commit is contained in:
Jason N. 2024-03-07 12:04:28 -05:00
parent 3938fc7248
commit 7807e0d806

View file

@ -90,7 +90,8 @@ runs:
- name: Ensure cache directories exist - name: Ensure cache directories exist
shell: bash shell: bash
run: | run: |
mkdir /cache/dnf /cache/skopeo mkdir /cache/dnf || true
mkdir /cache/skopeo || true
- name: Run docker image - name: Run docker image
shell: bash shell: bash