nthmail/format.sh
2024-07-10 19:01:31 -03:00

4 lines
99 B
Bash
Executable File

#!/bin/bash
for file in $(find . -path .git -prune -o -name '*.go' -print); do go fmt $file; done