Skip to content

Commit 4b5cf2a

Browse files
committed
fix ci file
1 parent 79d1108 commit 4b5cf2a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/pr-java-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ jobs:
5353
in_block=0
5454
continue
5555
fi
56-
if [[ $in_block -eq 1 && "$line" == Error:* ]]; then
57-
errors+="$line"$'\n'
56+
if [[ $in_block -eq 1 && "${line#"${line%%[![:space:]]*}"}" == Error:* ]]; then
57+
errors+="${line#"${line%%[![:space:]]*}"}"$'\n'
5858
fi
5959
done < build_output.txt
6060

0 commit comments

Comments
 (0)