File tree 3 files changed +3
-2
lines changed
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 25
25
26
26
# End of https://www.gitignore.io/api/go
27
27
28
+ /var
28
29
/.tusc
29
30
/data
30
31
/tusc
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ all: clean get
4
4
GOOS=darwin GOARCH=amd64 go build -ldflags " -w -s" -o tusc_darwin_amd64 cmd/tusc.go
5
5
GOOS=linux GOARCH=amd64 go build -ldflags " -w -s" -o tusc_linux_amd64 cmd/tusc.go
6
6
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
8
8
9
9
.PHONY : get
10
10
get :
Original file line number Diff line number Diff line change 1
1
# tusc
2
2
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 )
4
4
5
5
A single binary for both server and client of [ tus resumable upload protocol] ( https://tus.io ) .
6
6
You can’t perform that action at this time.
0 commit comments