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
|
||||
mkdir -pv build/userpatches
|
||||
rsync -av os/userpatches/. build/userpatches/
|
||||
#[[ -d custom/userpatches ]] &&
|
||||
rsync -av custom/userpatches/. build/userpatches/
|
||||
[[ -d custom/userpatches ]] && rsync -av custom/userpatches/. build/userpatches/
|
||||
|
||||
- shell: bash
|
||||
run: |
|
||||
|
|
Loading…
Reference in New Issue