Skip to content

Commit

Permalink
Merge pull request #7 from h3adache/main
Browse files Browse the repository at this point in the history
fix: add arch override for git-cliff arm64 release
  • Loading branch information
jylenhof authored May 20, 2024
2 parents 6ce54bd + f7563ce commit f274b35
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion lib/utils.bash
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,14 @@ list_all_versions() {
}

get_arch() {
uname -m
local arch
arch=${ARCH:-"$(uname -m)"}

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

echo "$arch"
}

get_os() {
Expand Down

0 comments on commit f274b35

Please sign in to comment.