Skip to content

Commit

Permalink
Merge pull request #30 from ipfs/fix/29
Browse files Browse the repository at this point in the history
fix(build): Target name for go-ipfs is go-ipfs.zip
  • Loading branch information
dignifiedquire committed Jan 20, 2016
2 parents dc340cd + 0d924bc commit b7ce479
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-go.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ function doBuild() {
fi

# now zip it all up
local binname=$(basename $target)
binname=$(echo $target | awk -F'/' '{ print $3 }')
mkdir -p $dir
if zip -r $dir/$binname.zip tmp-build/* > /dev/null; then
printDistInfo $binname
Expand Down

0 comments on commit b7ce479

Please sign in to comment.