File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ if [ -n "$pull_requests" ]; then
95
95
skip_build=false
96
96
comments=$( bitbucket_pullrequest_overview_comments " $repo_host " " $repo_project " " $repo_name " " $prq_number " | jq -c ' .[]' )
97
97
if [ -n " $comments " ]; then
98
- while read comment; do
98
+ while read -r comment; do
99
99
text=$( echo " $comment " | jq -r ' .text' )
100
100
101
101
# check for progress or finished messages => do not include in versions when available
Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ comments=$(bitbucket_pullrequest_overview_comments "$repo_host" "$repo_project"
148
148
commented=" "
149
149
skip_verify=false
150
150
if [ -n " $comments " ]; then
151
- while read comment; do
151
+ while read -r comment; do
152
152
id=$( echo " $comment " | jq -r ' .id' )
153
153
text=$( echo " $comment " | jq -r ' .text' )
154
154
version=$( echo " $comment " | jq -r ' .version' )
You can’t perform that action at this time.
0 commit comments