;ci: github: linux: don't break if dirs are missing
This commit is contained in:
parent
7598173765
commit
4526938d39
4
.github/workflows/linux-nightly.yml
vendored
4
.github/workflows/linux-nightly.yml
vendored
@ -99,7 +99,7 @@ jobs:
|
|||||||
|
|
||||||
- name: show stuff
|
- name: show stuff
|
||||||
run: |
|
run: |
|
||||||
ls -lFRa ~/.stack
|
if [[ -e ~/.stack ]]; then ls -lFRa ~/.stack; fi
|
||||||
|
|
||||||
- name: Cache stack-installed programs in ~/.local/bin
|
- name: Cache stack-installed programs in ~/.local/bin
|
||||||
id: stack-programs
|
id: stack-programs
|
||||||
@ -111,7 +111,7 @@ jobs:
|
|||||||
|
|
||||||
- name: show stuff
|
- name: show stuff
|
||||||
run: |
|
run: |
|
||||||
ls -lFRa ~/.local/bin
|
if [[ -e ~/.local/bin ]]; then ls -lFRa ~/.local/bin; fi
|
||||||
|
|
||||||
# stack's local package dbs for the project and each package
|
# stack's local package dbs for the project and each package
|
||||||
- name: Cache .stack-work
|
- name: Cache .stack-work
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user