-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update vendor deps; strip debugging from binary tools
- Loading branch information
sfomuseumbot
committed
Mar 17, 2023
1 parent
11d7dc1
commit e90b966
Showing
116 changed files
with
21,975 additions
and
523 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,21 @@ | ||
.PHONY: cli | ||
|
||
GOMOD=vendor | ||
|
||
cli: | ||
go build -mod vendor -o bin/wof-assign-geometry cmd/wof-assign-geometry/main.go | ||
go build -mod vendor -o bin/wof-assign-parent cmd/wof-assign-parent/main.go | ||
go build -mod vendor -o bin/wof-exportify cmd/wof-exportify/main.go | ||
go build -mod vendor -o bin/wof-create cmd/wof-create/main.go | ||
go build -mod vendor -o bin/wof-deprecate cmd/wof-deprecate/main.go | ||
go build -mod vendor -o bin/wof-cessate cmd/wof-cessate/main.go | ||
go build -mod vendor -o bin/wof-superseded-by cmd/wof-superseded-by/main.go | ||
go build -mod vendor -o bin/wof-ensure-properties cmd/wof-ensure-properties/main.go | ||
go build -mod vendor -o bin/wof-deprecate-and-supersede cmd/wof-deprecate-and-supersede/main.go | ||
go build -mod vendor -o bin/wof-merge-featurecollection cmd/wof-merge-featurecollection/main.go | ||
go build -mod vendor -o bin/wof-supersede-with-parent cmd/wof-supersede-with-parent/main.go | ||
go build -mod vendor -o bin/wof-as-featurecollection cmd/wof-as-featurecollection/main.go | ||
go build -mod vendor -o bin/wof-as-jsonl cmd/wof-as-jsonl/main.go | ||
go build -mod vendor -o bin/wof-rename-property cmd/wof-rename-property/main.go | ||
go build -mod vendor -o bin/wof-remove-properties cmd/wof-remove-properties/main.go | ||
go build -mod vendor -o bin/wof-clone-feature cmd/wof-clone-feature/main.go | ||
go build -mod $(GOMOD) -ldflags="-s -w" -o bin/wof-assign-geometry cmd/wof-assign-geometry/main.go | ||
go build -mod $(GOMOD) -ldflags="-s -w" -o bin/wof-assign-parent cmd/wof-assign-parent/main.go | ||
go build -mod $(GOMOD) -ldflags="-s -w" -o bin/wof-exportify cmd/wof-exportify/main.go | ||
go build -mod $(GOMOD) -ldflags="-s -w" -o bin/wof-create cmd/wof-create/main.go | ||
go build -mod $(GOMOD) -ldflags="-s -w" -o bin/wof-deprecate cmd/wof-deprecate/main.go | ||
go build -mod $(GOMOD) -ldflags="-s -w" -o bin/wof-cessate cmd/wof-cessate/main.go | ||
go build -mod $(GOMOD) -ldflags="-s -w" -o bin/wof-superseded-by cmd/wof-superseded-by/main.go | ||
go build -mod $(GOMOD) -ldflags="-s -w" -o bin/wof-ensure-properties cmd/wof-ensure-properties/main.go | ||
go build -mod $(GOMOD) -ldflags="-s -w" -o bin/wof-deprecate-and-supersede cmd/wof-deprecate-and-supersede/main.go | ||
go build -mod $(GOMOD) -ldflags="-s -w" -o bin/wof-merge-featurecollection cmd/wof-merge-featurecollection/main.go | ||
go build -mod $(GOMOD) -ldflags="-s -w" -o bin/wof-supersede-with-parent cmd/wof-supersede-with-parent/main.go | ||
go build -mod $(GOMOD) -ldflags="-s -w" -o bin/wof-as-featurecollection cmd/wof-as-featurecollection/main.go | ||
go build -mod $(GOMOD) -ldflags="-s -w" -o bin/wof-as-jsonl cmd/wof-as-jsonl/main.go | ||
go build -mod $(GOMOD) -ldflags="-s -w" -o bin/wof-rename-property cmd/wof-rename-property/main.go | ||
go build -mod $(GOMOD) -ldflags="-s -w" -o bin/wof-remove-properties cmd/wof-remove-properties/main.go | ||
go build -mod $(GOMOD) -ldflags="-s -w" -o bin/wof-clone-feature cmd/wof-clone-feature/main.go |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,7 +63,7 @@ func main() { | |
if !has_changed { | ||
return nil | ||
} | ||
|
||
buf_wr.Flush() | ||
br := bytes.NewReader(buf.Bytes()) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.