All checks were successful
check / check (push) Successful in 38s
Reviewed-on: #26 Co-authored-by: sneak <sneak@sneak.berlin> Co-committed-by: sneak <sneak@sneak.berlin>
13 lines
159 B
Bash
Executable File
13 lines
159 B
Bash
Executable File
#!/bin/sh
|
|
# script/fmt: format all files (writes).
|
|
set -eu
|
|
|
|
ROOT="$(cd "$(dirname "$0")/.." && pwd -P)"
|
|
|
|
main() {
|
|
cd "$ROOT"
|
|
go fmt ./...
|
|
}
|
|
|
|
main "$@"
|