Skip to content

Commit 0ec2a2a

Browse files
authored
fix geekbench claim url
1 parent 729cb55 commit 0ec2a2a

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

yabs.sh

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# Yet Another Bench Script by Mason Rowe
4-
# Initial Oct 2019; Last update Dec 2024
4+
# Initial Oct 2019; Last update Jan 2025
55

66
# Disclaimer: This project is a work in progress. Any errors or suggestions should be
77
# relayed to me via the GitHub project page linked below.
@@ -12,7 +12,7 @@
1212
# performance via fio. The script is designed to not require any dependencies
1313
# - either compiled or installed - nor admin privileges to run.
1414

15-
YABS_VERSION="v2024-12-20"
15+
YABS_VERSION="v2025-01-01"
1616

1717
echo -e '# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #'
1818
echo -e '# Yet-Another-Bench-Script #'
@@ -947,9 +947,8 @@ function launch_geekbench {
947947
fi
948948
else
949949
# if the Geekbench test succeeded, parse the test results URL
950-
GEEKBENCH_URL=$(echo -e "$GEEKBENCH_TEST" | head -1)
951-
GEEKBENCH_URL_CLAIM=$(echo "$GEEKBENCH_URL" | awk '{ print $2 }')
952-
GEEKBENCH_URL=$(echo "$GEEKBENCH_URL" | awk '{ print $1 }')
950+
GEEKBENCH_URL=$(echo -e "$GEEKBENCH_TEST" | head -1 | awk '{ print $1 }')
951+
GEEKBENCH_URL_CLAIM=$(echo -e "$GEEKBENCH_TEST" | tail -1 | awk '{ print $1 }')
953952
# sleep a bit to wait for results to be made available on the geekbench website
954953
sleep 10
955954
# parse the public results page for the single and multi core geekbench scores

0 commit comments

Comments
 (0)