Skip to content

Commit 2672020

Browse files
committed
Fix tar build command
1 parent 3f9e938 commit 2672020

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

script/appveyor-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ go get -d ./...
2929
go test --tags static $(go list ./... | grep -v vendor)
3030
if [[ "${APPVEYOR_REPO_TAG}" = true ]]; then
3131
go build --tags static -v -ldflags "-X main.Version=${APPVEYOR_REPO_TAG_NAME}"
32-
tar -zcf "gtm.${APPVEYOR_REPO_TAG_NAME}.windows.tar.gz gtm.exe"
32+
tar -zcf "gtm.${APPVEYOR_REPO_TAG_NAME}.windows.tar.gz" gtm.exe
3333
else
3434
timestamp=$(date +%s)
3535
go build --tags static -v -ldflags "-X main.Version=developer-build-${timestamp}"

0 commit comments

Comments
 (0)