mirror of https://github.com/armbian/build.git
Fix for Github Action - don't use custom folder if it doesn't exists
Closes https://github.com/armbian/build/issues/6332
This commit is contained in:
parent
92d79917ac
commit
2cd46aceb5
|
@ -143,8 +143,7 @@ runs:
|
||||||
# copy os userpatches and custom
|
# copy os userpatches and custom
|
||||||
mkdir -pv build/userpatches
|
mkdir -pv build/userpatches
|
||||||
rsync -av os/userpatches/. build/userpatches/
|
rsync -av os/userpatches/. build/userpatches/
|
||||||
#[[ -d custom/userpatches ]] &&
|
[[ -d custom/userpatches ]] && rsync -av custom/userpatches/. build/userpatches/
|
||||||
rsync -av custom/userpatches/. build/userpatches/
|
|
||||||
|
|
||||||
- shell: bash
|
- shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in New Issue