This commit is contained in:
zeus
2025-01-28 12:28:03 +08:00
parent 738c373a77
commit ec96756800
2534 changed files with 486292 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/bin/sh
set -e
# Support for SwiftLint installed via Homebrew on Apple Silicon
# https://github.com/realm/SwiftLint/issues/2992
if test -d "/opt/homebrew/bin/"; then
PATH="/opt/homebrew/bin/:${PATH}"
fi
if which swiftlint >/dev/null; then
# Ignore swiftlint error, because GRBD has no dependency on any Swiftlint version.
# See https://github.com/groue/GRDB.swift/issues/1327
swiftlint --config "${SRCROOT}/Scripts/swiftlint.yml" || true
else
echo "warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint"
fi