Skip to content

Commit

Permalink
Merge pull request #1689 from saschagrunert/arch
Browse files Browse the repository at this point in the history
Fix get script architecture
  • Loading branch information
openshift-merge-robot authored Sep 12, 2023
2 parents fdb9d2f + ca1ef10 commit 66a8f0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/get
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ parse_args() {
case "$OPTION" in
a)
ARCH="$OPTARG"
echo "Using architecture: $TAG"
echo "Using architecture: $ARCH"
;;
l)
TAG="$OPTARG"
Expand Down Expand Up @@ -144,7 +144,7 @@ download_binary() {
popd >/dev/null
mv "$TMPDIR/${FILES[0]}" "$OUTPUT"
else
curl_retry "$BASE_URL/$COMMIT/conmonrs" -o "$OUTPUT"
curl_retry "$BASE_URL/$COMMIT/conmonrs.$ARCH" -o "$OUTPUT"
fi

chmod +x "$OUTPUT"
Expand Down

0 comments on commit 66a8f0b

Please sign in to comment.