1
0
Fork 0

Fix if statement

master v0.2.0
Ambrose Chua 2018-03-26 22:12:42 +08:00
parent cf662b8d91
commit d52a582138
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ pipeline:
pull: true pull: true
commands: commands:
- export FILENAME=${DRONE_REPO_NAME}-${GOOS}-${GOARCH} - export FILENAME=${DRONE_REPO_NAME}-${GOOS}-${GOARCH}
- if [ "$GOOS" == "windows" ]; then export FILENAME=$FILENAME.exe; fi - if [ "$GOOS" = "windows" ]; then export FILENAME=$FILENAME.exe; fi
- go build -ldflags "-s -w" -o dist/$FILENAME - go build -ldflags "-s -w" -o dist/$FILENAME
release: release:
image: plugins/github-release image: plugins/github-release