mirror of
https://github.com/GRFreire/nthmail.git
synced 2026-01-08 12:29:38 +00:00
4 lines
99 B
Bash
Executable File
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
|