Skip to content

Instantly share code, notes, and snippets.

@olbrichj
Last active July 25, 2017 20:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save olbrichj/a927cd5ff5176c354bea40ee828fa163 to your computer and use it in GitHub Desktop.
Save olbrichj/a927cd5ff5176c354bea40ee828fa163 to your computer and use it in GitHub Desktop.
#!/bin/bash
LINT=$(which swiftlint)
if [[ -e "${LINT}" ]]; then
echo "SwiftLint Start..."
else
echo "SwiftLint does not exist, download from https://github.com/realm/SwiftLint"
exit 1
fi
$LINT lint --quiet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment