We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
mapfiles
1 parent 65f2a31 commit d7edaa9Copy full SHA for d7edaa9
hooks/pre-exit
@@ -47,7 +47,8 @@ fi
47
# Creates the annotations with all the report URLs
48
annotation-link() {
49
local json_file="$1"
50
- mapfile -t REPORT_URLS < <(sort "${json_file}" | uniq)
+ REPORT_URLS=()
51
+ while IFS= read -r line; do REPORT_URLS+=("${line}"); done < <(sort "${json_file}" | uniq)
52
53
local REPORTS=""
54
REPORT_COUNT=1
@@ -252,4 +253,4 @@ else
252
253
fi
254
if [ "$ANNOTATE" != "false" ]; then
255
annotation-link "${REPORT_URLS_FILE}"
-fi
256
+fi
0 commit comments