6 lines
148 B
Bash
Executable File
6 lines
148 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
|
|
CONFIG="${ROOT}/.swiftformat"
|
|
swiftformat --config "$CONFIG" "$ROOT/Sources"
|