Skip to content

Commit 14894d0

Browse files
author
Jack Tang
committed
FIX: travis CI missing upx
1 parent 195380b commit 14894d0

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525

2626
# End of https://www.gitignore.io/api/go
2727

28+
/var
2829
/.tusc
2930
/data
3031
/tusc

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ all: clean get
44
GOOS=darwin GOARCH=amd64 go build -ldflags "-w -s" -o tusc_darwin_amd64 cmd/tusc.go
55
GOOS=linux GOARCH=amd64 go build -ldflags "-w -s" -o tusc_linux_amd64 cmd/tusc.go
66
GOOS=linux GOARCH=arm go build -ldflags "-w -s" -o tusc_linux_arm cmd/tusc.go
7-
upx tusc*
7+
which upx && upx tusc* || true
88

99
.PHONY: get
1010
get:

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# tusc
22

3-
![build status](https://travis-ci.com/jackhftang/tusc.svg?branch=master)
3+
[![build status](https://travis-ci.com/jackhftang/tusc.svg?branch=master)](https://travis-ci.org/jackhftang/tusc)
44

55
A single binary for both server and client of [tus resumable upload protocol](https://tus.io).
66

0 commit comments

Comments
 (0)