Skip to content
This repository was archived by the owner on Jan 16, 2021. It is now read-only.

Commit 6a3d66d

Browse files
author
Pavan Kumar
committed
fix output path in .travis.ci
1 parent 94f8e34 commit 6a3d66d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ script:
55
- go test -v ./...
66
before_deploy:
77
- go get github.com/inconshreveable/mousetrap # temporary fix for travis build breaks for windows due to cobra dependency on mousetrap
8-
- GOOS=darwin GOARCH=amd64 go build -v github.com/ParsePlatform/parse-cli -o parse
9-
- GOOS=windows GOARCH=386 go build -v github.com/ParsePlatform/parse-cli -o parse.exe
10-
- GOOS=linux GOARCH=386 go build -v github.com/ParsePlatform/parse-cli -o parse_linux
11-
- GOOS=linux GOARCH=arm go build -v github.com/ParsePlatform/parse-cli -o parse_linux_arm
8+
- GOOS=darwin GOARCH=amd64 go build -o parse -v github.com/ParsePlatform/parse-cli
9+
- GOOS=windows GOARCH=386 go build -o parse.exe -v github.com/ParsePlatform/parse-cli
10+
- GOOS=linux GOARCH=386 go build -o parse_linux -v github.com/ParsePlatform/parse-cli
11+
- GOOS=linux GOARCH=arm go build -o parse_linux_arm -v github.com/ParsePlatform/parse-cli
1212
deploy:
1313
provider: releases
1414
api_key:

0 commit comments

Comments
 (0)