mirror of
https://github.com/openclaw/openclaw.git
synced 2026-02-09 05:19:32 +08:00
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"
|