8 lines
188 B
Bash
8 lines
188 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if which swiftformat >/dev/null; then
|
||
|
cd ios && swiftformat .
|
||
|
else
|
||
|
echo "warning: SwiftFormat not installed, download from https://github.com/nicklockwood/SwiftFormat"
|
||
|
fi
|