Skip to content

Commit

Permalink
Merge pull request #1 from adamcrews/release/first_release
Browse files Browse the repository at this point in the history
Initial release
  • Loading branch information
adamcrews authored Dec 29, 2022
2 parents 43a348c + 16e78ab commit bcbcbb7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
- name: asdf_plugin_test
uses: asdf-vm/actions/plugin-test@v1
with:
command: tf-summarize --help
command: tf-summarize -v
14 changes: 7 additions & 7 deletions lib/utils.bash
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -euo pipefail
# TODO: Ensure this is the correct GitHub homepage where releases can be downloaded for tf-summarize.
GH_REPO="https://github.com/dineshba/tf-summarize"
TOOL_NAME="tf-summarize"
TOOL_TEST="tf-summarize --help"
TOOL_TEST="tf-summarize -v"

fail() {
echo -e "asdf-$TOOL_NAME: $*"
Expand Down Expand Up @@ -81,12 +81,12 @@ getArch() {
ARCH=$(uname -m)

case $ARCH in
armv*) ARCH="arm" ;;
aarch64) ARCH="arm64" ;;
x86) ARCH="386" ;;
x86_64) ARCH="amd64" ;;
i686) ARCH="386" ;;
i386) ARCH="386" ;;
armv*) ARCH="arm" ;;
aarch64) ARCH="arm64" ;;
x86) ARCH="386" ;;
x86_64) ARCH="amd64" ;;
i686) ARCH="386" ;;
i386) ARCH="386" ;;
esac
echo "${ARCH}"
}
Expand Down

0 comments on commit bcbcbb7

Please sign in to comment.