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
|
|
|
|
echo "warning: SwiftFormat not installed, download from https://github.com/nicklockwood/SwiftFormat"
|
|
|
|
fi
|