Skip to content

Commit

Permalink
fix: add arch override for git-cliff arm64 release
Browse files Browse the repository at this point in the history
  • Loading branch information
h3adache committed May 2, 2024
1 parent 6ce54bd commit 723a34a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion lib/utils.bash
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,15 @@ list_all_versions() {
}

get_arch() {
uname -m
if [ -z "$ARCH" ]; then
ARCH=$(uname -m)

case ${ARCH} in
arm64) ARCH="aarch64" ;;
esac
fi

echo "$ARCH"
}

get_os() {
Expand Down

0 comments on commit 723a34a

Please sign in to comment.