Skip to content

Commit 16c5a52

Browse files
committed
Install dependencies before crosscompiling (fixes #27)
1 parent ad2336d commit 16c5a52

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

crosscompile.sh

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/bash
22

3+
go get -d ./...
34
for target in darwin:amd64 linux:amd64 linux:386 linux:arm windows:amd64; do
45
echo "Compiling $target"
56
export GOOS=$(echo $target | cut -d: -f1) GOARCH=$(echo $target | cut -d: -f2)

0 commit comments

Comments
 (0)