Skip to content

Commit 2cd46ac

Browse files
committed
Fix for Github Action - don't use custom folder if it doesn't exists
Closes #6332
1 parent 92d7991 commit 2cd46ac

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

action.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,7 @@ runs:
143143
# copy os userpatches and custom
144144
mkdir -pv build/userpatches
145145
rsync -av os/userpatches/. build/userpatches/
146-
#[[ -d custom/userpatches ]] &&
147-
rsync -av custom/userpatches/. build/userpatches/
146+
[[ -d custom/userpatches ]] && rsync -av custom/userpatches/. build/userpatches/
148147
149148
- shell: bash
150149
run: |

0 commit comments

Comments
 (0)