mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
362 B
18 lines
362 B
#!/bin/sh
|
|
|
|
find_files() {
|
|
find . ! \( \
|
|
\( \
|
|
-path '.github' \
|
|
-o -path './build/_workspace' \
|
|
-o -path './build/bin' \
|
|
-o -path './crypto/bn256' \
|
|
-o -path '*/vendor/*' \
|
|
\) -prune \
|
|
\) -name '*.go'
|
|
}
|
|
|
|
GOFMT="gofmt -s -w"
|
|
GOIMPORTS="goimports -w"
|
|
find_files | xargs $GOFMT
|
|
find_files | xargs $GOIMPORTS
|
|
|