Skip to content

Commit

Permalink
Fix for Github Action - don't use custom folder if it doesn't exists
Browse files Browse the repository at this point in the history
  • Loading branch information
igorpecovnik committed Mar 3, 2024
1 parent 92d7991 commit 2cd46ac
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 2cd46ac

Please sign in to comment.