Browse Source

Don't go-install genxdr

Jakob Borg 11 years ago
parent
commit
91b35118d9
1 changed files with 1 additions and 2 deletions
  1. 1 2
      build.sh

+ 1 - 2
build.sh

@@ -96,9 +96,8 @@ setup() {
 }
 
 xdr() {
-	go install ./xdr/cmd/genxdr
 	for f in discover/packets files/leveldb protocol/message scanner/blocks scanner/file ; do
-		genxdr "${f}.go" > "${f}_xdr.go"
+		go run xdr/cmd/genxdr/main.go -- "${f}.go" > "${f}_xdr.go"
 	done
 }