-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcopy-lint-config.sh
executable file
·28 lines (23 loc) · 1018 Bytes
/
copy-lint-config.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/zsh
# Copy .swiftlint.yml from root because `parent_config` not working.
# https://github.com/realm/SwiftLint/issues/3645
SRCROOT=$(cd $(dirname $0) && git rev-parse --show-toplevel)
if ! type brew > /dev/null; then
echo '\e[33mHomebrew not found. Installing...\e[m'
# Copied install script from https://brew.sh/
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
if [ "$(/usr/bin/uname -m)" = 'arm64' ]; then
if [ "$(cat ~/.zprofile | grep 'eval "$(/opt/homebrew/bin/brew shellenv)"')" != '' ]; then
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
fi
fi
fi
if ! type yq > /dev/null; then
brew install yq
fi
cat "${SRCROOT}/.swiftlint.yml" \
| yq '. | .included = ["BuildConfigSwiftDemo"]
| .excluded = ["Tools", "Package.swift"]' \
> "${SRCROOT}/Demo/.swiftlint.yml"
cp "${SRCROOT}/Demo/.swiftlint.yml" "${SRCROOT}/DemoWithPackage/.swiftlint.yml"