mirror of https://github.com/ppy/osu
Don't fail grep if no matches
This commit is contained in:
parent
a3b8c4d127
commit
c1686fb687
|
@ -84,7 +84,7 @@ jobs:
|
||||||
PR_TEXT: ${{ inputs.pr-text }}
|
PR_TEXT: ${{ inputs.pr-text }}
|
||||||
run: |
|
run: |
|
||||||
# Add comment environment
|
# Add comment environment
|
||||||
echo "${PR_TEXT}" | sed -r 's/\r$//' | grep -E '^\w+=' | while read -r line; do
|
echo "${PR_TEXT}" | sed -r 's/\r$//' | { grep -E '^\w+=' || true; } | while read -r line; do
|
||||||
opt=$(echo "${line}" | cut -d '=' -f1)
|
opt=$(echo "${line}" | cut -d '=' -f1)
|
||||||
sed -i "s;^${opt}=.*$;${line};" "${{ env.GENERATOR_ENV }}"
|
sed -i "s;^${opt}=.*$;${line};" "${{ env.GENERATOR_ENV }}"
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue