aboutsummaryrefslogtreecommitdiff
path: root/src/gnunet/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/gnunet/build.sh')
-rwxr-xr-xsrc/gnunet/build.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/gnunet/build.sh b/src/gnunet/build.sh
index 20f6933..03899f7 100755
--- a/src/gnunet/build.sh
+++ b/src/gnunet/build.sh
@@ -1,4 +1,7 @@
1#!/bin/bash 1#!/bin/bash
2 2
3[ "$1" = "withgen" ] && go generate ./... 3if [ "$1" = "withgen" ]; then
4go install -v -gcflags "-N -l" ./... 4 go generate ./...
5 shift
6fi
7go install $* -gcflags "-N -l" ./...