From b797ce708c4eab7583b33653069ed7a4f068020e Mon Sep 17 00:00:00 2001 From: Ben Chatelain Date: Sun, 18 Feb 2024 00:09:44 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Format=20bash=20scripts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- script/bottle | 28 ++++++++++++++-------------- script/build | 6 +++--- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/script/bottle b/script/bottle index a048c6d1c..b4daad659 100755 --- a/script/bottle +++ b/script/bottle @@ -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 diff --git a/script/build b/script/build index 5c7038334..ed9ea03ce 100755 --- a/script/build +++ b/script/build @@ -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