mirror of
https://github.com/mas-cli/mas
synced 2024-11-21 19:23:01 +00:00
Use short/abbreviated options for consistency.
Partial #638 Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
This commit is contained in:
parent
7523bc91d0
commit
5b96b77e22
2 changed files with 3 additions and 3 deletions
|
@ -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}"
|
||||
|
||||
|
|
|
@ -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)"
|
||||
|
|
Loading…
Reference in a new issue