fiximports: Don't leave backup files on osx
This commit is contained in:
parent
3f0f5834b3
commit
a7b695eac3
@ -4,12 +4,14 @@ go_files() {
|
||||
find . -type f -name \*.go -not -name \*_cbor_gen.go | grep -v './extern/filecoin-ffi' | grep -v './extern/test-vectors'
|
||||
}
|
||||
|
||||
go_files | xargs -I '{}' sed -i -e '/import (/ {
|
||||
go_files | xargs -I '{}' sed -i.ifixbak -e '/import (/ {
|
||||
:1
|
||||
$!N
|
||||
s/\n\n/\'$'\n''/
|
||||
/)/!b1
|
||||
}' '{}'
|
||||
|
||||
find . -type f -name \*.go.ifixbak | xargs rm
|
||||
|
||||
go_files | xargs -I '{}' goimports -w -local "github.com/filecoin-project" '{}'
|
||||
go_files | xargs -I '{}' goimports -w -local "github.com/filecoin-project/lotus" '{}'
|
||||
|
Loading…
Reference in New Issue
Block a user