Skip to content

Instantly share code, notes, and snippets.

@fxm90
Created September 1, 2019 10:20
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 fxm90/4e5c8399cebc9e96dc3947b27e1cb096 to your computer and use it in GitHub Desktop.
Save fxm90/4e5c8399cebc9e96dc3947b27e1cb096 to your computer and use it in GitHub Desktop.
Check "SwiftFormat" installed via CocoaPods. Add a new "Run Script Phase" with this gist.
SWIFTFORMAT="${PODS_ROOT}/SwiftFormat/CommandLineTool/swiftformat"
if [ ! -f "$SWIFTFORMAT" ]; then
echo "warning: SwiftFormat not installed!"
exit 1
fi
$SWIFTFORMAT ./
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment