9 lines
248 B
Bash
Raw Normal View History

2021-03-09 10:53:29 +01:00
#!/bin/bash
if which swiftformat >/dev/null; then
2021-03-09 12:19:18 +01:00
cd ios && swiftformat --quiet .
2021-03-09 10:53:29 +01:00
else
2024-02-20 20:34:34 +01:00
echo "error: SwiftFormat not installed, install with 'brew install swiftformat' (or manually from https://github.com/nicklockwood/SwiftFormat)"
exit 1
2021-03-09 10:53:29 +01:00
fi