yq/scripts/format.sh
2020-11-25 11:17:28 +11:00

5 lines
114 B
Bash
Executable File

#!/bin/bash
find . \( -path ./vendor \) -prune -o -name "*.go" -exec goimports -w {} \;
go mod tidy
go mod vendor