Skip to content

Commit

Permalink
🎨 Format bash scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
phatblat authored and rgoldberg committed Feb 18, 2024
1 parent 0144acb commit 8318935
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
28 changes: 14 additions & 14 deletions script/bottle
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,20 @@ MAS_VERSION=$(script/version)
ROOT_URL="https://github.com/mas-cli/mas/releases/download/v${MAS_VERSION}"

# Supports macOS 10.11 and later
OS_NAMES=( \
sonoma \
arm64_sonoma \
ventura \
arm64_ventura \
monterey \
arm64_monterey \
big_sur \
arm64_big_sur \
catalina \
mojave \
high_sierra \
sierra \
el_capitan \
OS_NAMES=(
sonoma
arm64_sonoma
ventura
arm64_ventura
monterey
arm64_monterey
big_sur
arm64_big_sur
catalina
mojave
high_sierra
sierra
el_capitan
)

# Semantic version number split into a list using Ugly, bash 3 compatible syntax
Expand Down
6 changes: 3 additions & 3 deletions script/build
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
# Build for the host architecture by default.
ARCH=()
if [[ "$1" == '--universal' ]]; then
ARCH=( \
--arch arm64 \
--arch x86_64 \
ARCH=(
--arch arm64
--arch x86_64
)
fi

Expand Down

0 comments on commit 8318935

Please sign in to comment.