Skip to content

Commit

Permalink
Suppress error message
Browse files Browse the repository at this point in the history
  • Loading branch information
CaptainThrowback authored Feb 24, 2024
1 parent ec10914 commit ccb6e96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/Recovery Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
repo sync ${{ inputs.DEVICE_PATH }} -j$(nproc --all)
DT_NAME=$(awk -F/ '{print $NF}' <<< ${{ inputs.DEVICE_TREE_URL }})
if [ "$DT_NAME" != ${{ inputs.DEVICE_NAME }} ]; then
if [ -z "$(ls ${{ inputs.DEVICE_PATH }}/${{ inputs.DEVICE_NAME }}/BoardConfig.mk)" ]; then
if [ -z "$(ls ${{ inputs.DEVICE_PATH }}/${{ inputs.DEVICE_NAME }}/BoardConfig.mk 2>/dev/null)" ]; then
mkdir ${{ inputs.DEVICE_PATH }}/${{ inputs.DEVICE_NAME }}
DT_BoardConfig=$(ls ${{ inputs.DEVICE_PATH }}/BoardConfig* | head -1)
echo -e "-include ${DT_BoardConfig}">${{ inputs.DEVICE_PATH }}/${{ inputs.DEVICE_NAME }}/BoardConfig.mk
Expand Down

0 comments on commit ccb6e96

Please sign in to comment.