11 lines
283 B
Bash
Executable File
11 lines
283 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
|
|
PEEKABOO_ROOT="${ROOT}/../peekaboo"
|
|
if [ -f "${PEEKABOO_ROOT}/.swiftformat" ]; then
|
|
CONFIG="${PEEKABOO_ROOT}/.swiftformat"
|
|
else
|
|
CONFIG="${ROOT}/.swiftformat"
|
|
fi
|
|
swiftformat --config "$CONFIG" "$ROOT/Sources"
|