Skip to content

Commit

Permalink
travis didn't upload, removes relative path
Browse files Browse the repository at this point in the history
  • Loading branch information
gidsi committed Oct 24, 2017
1 parent 3b52821 commit 049fafe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

mkdir ../bin
mkdir bin

for R in \
darwin/386 \
Expand Down Expand Up @@ -28,11 +28,11 @@ for R in \

echo ${filename}

GOOS=${os} GOARCH=${arch} go build -o "../bin/${filename}"
GOOS=${os} GOARCH=${arch} go build -o "bin/${filename}"

done

cd "../bin"
cd "bin"
sha256sum spaceapi-validator-* > SHA256SUMS

echo "done"

0 comments on commit 049fafe

Please sign in to comment.