Skip to content

Commit c7518f1

Browse files
authored
AAE-29961 Fix link to reportportal launch when using ubuntu 24 (#860)
1 parent e89a45b commit c7518f1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/reportportal-summarize/get-rp-output.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ URL=''
55

66
# support spaces on launch key
77
urlEncode() {
8-
echo $1 | curl -Gso /dev/null -w %{url_effective} --data-urlencode @- "" | sed -E 's/..(.*).../\1/'
8+
echo $1 | python -c "import urllib.parse, sys; print(urllib.parse.quote(sys.stdin.read()))" | sed -E 's/(.*).../\1/' | tr -d '\n'
99
}
1010

1111
if [[ -n "$RP_LAUNCH_KEY" && -n "$RP_TOKEN" && -n "$RP_URL" && -n "$RP_PROJECT" ]]

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v8.8.0
1+
v8.8.1

0 commit comments

Comments
 (0)