diff options
author | hackyminer <hackyminer@gmail.com> | 2018-06-26 21:04:27 +0800 |
---|---|---|
committer | hackyminer <hackyminer@gmail.com> | 2018-06-26 21:04:27 +0800 |
commit | 909e968ebb733dc01150e4e67221fef1177b0c8c (patch) | |
tree | 75b2487db95768583d2c9721d02bcddde8713a79 /build/goimports.sh | |
parent | 461291882edce0ac4a28f64c4e8725b7f57cbeae (diff) | |
download | dexon-909e968ebb733dc01150e4e67221fef1177b0c8c.tar.gz dexon-909e968ebb733dc01150e4e67221fef1177b0c8c.tar.zst dexon-909e968ebb733dc01150e4e67221fef1177b0c8c.zip |
build: make build/goimports.sh more potable
Diffstat (limited to 'build/goimports.sh')
-rwxr-xr-x | build/goimports.sh | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/build/goimports.sh b/build/goimports.sh index 6d67ef1f0..1fcace6a4 100755 --- a/build/goimports.sh +++ b/build/goimports.sh @@ -1,18 +1,18 @@ -#!/usr/bin/env bash +#!/bin/sh find_files() { - find . -not \( \ + find . ! \( \ \( \ - -wholename '.github' \ - -o -wholename './build/_workspace' \ - -o -wholename './build/bin' \ - -o -wholename './crypto/bn256' \ - -o -wholename '*/vendor/*' \ + -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;
\ No newline at end of file +GOFMT="gofmt -s -w" +GOIMPORTS="goimports -w" +find_files | xargs $GOFMT +find_files | xargs $GOIMPORTS |