Skip to content

Commit

Permalink
fixup: Ensure the correct filename on x86
Browse files Browse the repository at this point in the history
  • Loading branch information
marun committed Mar 15, 2024
1 parent 28c57bc commit 173cc74
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/run_promtail.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ if ! command -v "${CMD}" &> /dev/null; then
ARCH="$(uname -i)"
if [[ "${ARCH}" == "aarch64" ]]; then
ARCH="arm64"
elif [[ "${ARCH}" == "x86_64" ]]; then
ARCH="amd64"
fi
DIST="linux-${ARCH}"
fi
Expand Down

0 comments on commit 173cc74

Please sign in to comment.