Skip to content

Commit

Permalink
Fix the build script to handle the split main
Browse files Browse the repository at this point in the history
  • Loading branch information
Jen Spinney and Michael Fraenkel committed Jun 19, 2015
1 parent cd9eaa4 commit 9bf9460
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cf-plugin/scripts/build-plugins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ set -x

go get github.com/Sirupsen/logrus

GOOS=linux GOARCH=386 go build -o ssh-plugin-linux-386 plugin.go
GOOS=linux GOARCH=amd64 go build -o ssh-plugin-linux-amd64 plugin.go
GOOS=windows GOARCH=386 go build -o ssh-plugin-win32.exe plugin.go
GOOS=windows GOARCH=amd64 go build -o ssh-plugin-win64.exe plugin.go
go build -o ssh-plugin-darwin-amd64 plugin.go
GOOS=linux GOARCH=386 go build -o ssh-plugin-linux-386 .
GOOS=linux GOARCH=amd64 go build -o ssh-plugin-linux-amd64 .
GOOS=windows GOARCH=386 go build -o ssh-plugin-win32.exe .
GOOS=windows GOARCH=amd64 go build -o ssh-plugin-win64.exe .
go build -o ssh-plugin-darwin-amd64 .

shasum -a1 ssh-plugin-*

0 comments on commit 9bf9460

Please sign in to comment.