mirror of
https://github.com/fxm90/GradientLoadingBar.git
synced 2026-04-17 12:17:30 +00:00
20 lines
366 B
Bash
Executable File
20 lines
366 B
Bash
Executable File
#
|
|
# swift-format.sh
|
|
# Created by Felix Mau (https://felix.hamburg)
|
|
#
|
|
|
|
#!/bin/bash
|
|
cd Example/
|
|
|
|
# Path config
|
|
PODS_ROOT="Pods"
|
|
SWIFTFORMAT="${PODS_ROOT}/SwiftFormat/CommandLineTool/swiftformat"
|
|
|
|
if [ ! -f "$SWIFTFORMAT" ]; then
|
|
echo "warning: SwiftFormat not installed!"
|
|
exit 1
|
|
fi
|
|
|
|
# Run "swiftformat" and break build on any warnings.
|
|
$SWIFTFORMAT ../ --lint
|