mirror of
https://github.com/mas-cli/mas
synced 2024-11-26 05:20:18 +00:00
25 lines
610 B
Bash
Executable file
25 lines
610 B
Bash
Executable file
#!/bin/bash -e
|
|
#
|
|
# script/swiftlint_runscript
|
|
# mas-cli
|
|
#
|
|
# SwiftLint invocation from inside Xcode. Minimal output.
|
|
#
|
|
|
|
if test -n "$JENKINS_URL"
|
|
then
|
|
echo "Skipping SwiftLint run script on CI, will run in Lint stage."
|
|
return
|
|
fi
|
|
|
|
# 😕 When run from Xcode, the command command doesn't support these options
|
|
# command --quiet --search swiftlint
|
|
# : command: --: invalid option
|
|
# : command: usage: command [-pVv] command [arg ...]
|
|
|
|
|
|
if command -v swiftlint > /dev/null; then
|
|
swiftlint lint --quiet
|
|
else
|
|
echo "warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint"
|
|
fi
|