Skip to content

Commit

Permalink
tools: Fix arch bug
Browse files Browse the repository at this point in the history
Fix mismatched case of `arch`

Fixes: kata-containers#6895
Signed-off-by: stevenhorsman <[email protected]>
  • Loading branch information
stevenhorsman committed May 19, 2023
1 parent 0364620 commit a89b44a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ arch=$(uname -m)

firecracker_tarball_url="${firecracker_url}/releases/download"

file_name="firecracker-${firecracker_version}-${ARCH}.tgz"
file_name="firecracker-${firecracker_version}-${arch}.tgz"
download_url="${firecracker_tarball_url}/${firecracker_version}/${file_name}"

info "Download firecracker version: ${firecracker_version} from ${download_url}"
Expand Down

0 comments on commit a89b44a

Please sign in to comment.