Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
liamg authored Mar 19, 2021
1 parent c4c0bfc commit c232b7a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ build: test
go build ./cmd/gifwrap/ -o bin/gifwrap

build-travis: test
mkdir -p bin/linux-amd64/gifwrap
mkdir -p bin/darwin-amd64/gifwrap
mkdir -p bin/darwin-arm64/gifwrap
mkdir -p bin/linux-amd64/
mkdir -p bin/darwin-amd64/
mkdir -p bin/darwin-arm64/
GOOS=linux GOARCH=amd64 go build -o bin/linux-amd64/gifwrap ./cmd/gifwrap
GOOS=darwin GOARCH=amd64 go build -o bin/darwin-amd64/gifwrap ./cmd/gifwrap
GOOS=darwin GOARCH=arm64 go build -o bin/darwin-arm64/gifwrap ./cmd/gifwrap
Expand Down

0 comments on commit c232b7a

Please sign in to comment.