Use short/abbreviated options for consistency.

Partial #638

Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
This commit is contained in:
Ross Goldberg 2024-11-15 21:41:56 -05:00
parent 7523bc91d0
commit 5b96b77e22
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -16,7 +16,7 @@
BUILD_DIR="${PWD}/.build"
BOTTLE_DIR="${BUILD_DIR}/bottles"
CORE_TAP_PATH="$(brew --repository homebrew/core)"
CORE_TAP_PATH="$(brew --repo homebrew/core)"
MAS_VERSION=$(script/version)
ROOT_URL="https://github.com/mas-cli/mas/releases/download/v${MAS_VERSION}"
@ -121,7 +121,7 @@ if ! test -e "${OLD_FILENAME}"; then
exit 1
fi
SHA256=$(shasum --algorithm 256 "${OLD_FILENAME}" | cut -f 1 -d ' ' -)
SHA256=$(shasum -a 256 "${OLD_FILENAME}" | cut -f 1 -d ' ' -)
mkdir -p "${BOTTLE_DIR}"

View file

@ -9,7 +9,7 @@
# brew bump-formula-pr --help
#
CORE_TAP_PATH="$(brew --repository homebrew/core)"
CORE_TAP_PATH="$(brew --repo homebrew/core)"
CORE_MAS_FORMULA_FILE="${CORE_TAP_PATH}/Formula/m/mas.rb"
PROJECT_PATH="$(git rev-parse --show-toplevel)"