chore(scripts): run shfmt

This commit is contained in:
Harsh Shandilya 2023-09-26 17:12:02 +05:30
parent 3cf6b22d95
commit de921bf786
No known key found for this signature in database
4 changed files with 8 additions and 6 deletions

View file

@ -14,7 +14,6 @@ case "$(uname -m)" in
*) ARCH="amd64" ;;
esac
case "$(uname)" in
Linux)
AGE_FILE="age-${AGE_VERSION}-linux-${ARCH}.tar.gz"
@ -24,7 +23,10 @@ case "$(uname)" in
AGE_FILE="age-${AGE_VERSION}-darwin-${ARCH}.tar.gz"
BIN_DIR="${HOME}/bin"
;;
*) echo "Unsupported system: $(uname)"; exit 1 ;;
*)
echo "Unsupported system: $(uname)"
exit 1
;;
esac
pushd "${TEMP_DIR}"