Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fiorix committed Mar 20, 2016
1 parent c3cec21 commit 6c5342e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ Marshaler and Unmarshaler interfaces.

The Go code generator (package wsdlgo) is capable of importing remote
parts of the WSDL via HTTP. You can configure its http.Client to support
authentication and self-signed certificates.
authentication and self-signed certificates. Once the code is generated
it invokes gofmt from $GOROOT/bin/gofmt. Will have if you don't have it.
8 changes: 7 additions & 1 deletion contrib/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,11 @@ VERSION=${VERSION:-`git describe --tags`}
for OS in linux freebsd windows darwin
do
GOOS=$OS GOARCH=amd64 go build -ldflags "-w -X main.version=${VERSION}"
tar czf wsdl2go-$VERSION-$OS-amd64.tar.gz wsdl2go*
TARBALL=wsdl2go-$VERSION-$OS-amd64.tar.gz
if [ "$OS" = "windows" ]; then
tar czf $TARBALL wsdl2go.exe
else
tar czf $TARBALL wsdl2go
fi
rm -f wsdl2go wsdl2go.exe
done

0 comments on commit 6c5342e

Please sign in to comment.