We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4dfc068 commit 1c98c8bCopy full SHA for 1c98c8b
install.sh
@@ -9,10 +9,11 @@ else
9
echo "Unsupported architecture: ${ARCH}"
10
exit 1
11
fi
12
+echo "detected arch: ${ARCH}"
13
-echo "selected arch: ${ARCH}"
14
RELEASE_META_DATA_URL="https://api.github.com/repos/sejoharp/worktimers/releases/latest"
15
BINARY_URL=$(curl -s ${RELEASE_META_DATA_URL} | jq -r ".assets[] | select(.name | contains(\"${ARCH}\")) | .browser_download_url")
16
+
17
echo "downloading ${BINARY_URL}"
18
curl -sLo worktimers ${BINARY_URL}
19
echo "make it executable"
0 commit comments