You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

45 lines
1.8 KiB

Index: src/github.com/tsuru/tsuru-client/Makefile
--- src/github.com/tsuru/tsuru-client/Makefile.orig 2017-12-10 15:06:12.000000000 +0100
+++ src/github.com/tsuru/tsuru-client/Makefile 2017-12-10 19:47:46.745565000 +0100
@@ -6,7 +6,7 @@
PYTHON := $(shell which python)
GHR := $(shell which ghr)
-GITHUB_TOKEN := $(shell git config --global --get github.token || echo $$GITHUB_TOKEN)
+GITHUB_TOKEN := 000000
LINTER_ARGS_SLOW = \
-j 4 --enable-gc -s vendor -e '.*/vendor/.*' --vendor --enable=misspell --enable=gofmt --enable=goimports --enable=unused \
@@ -77,7 +77,7 @@
./misc/build-all.sh
build:
- go build -o ./bin/tsuru ./tsuru
+ go build -v -o ./bin/tsuru ./tsuru
check-docs: build
./misc/check-all-cmds-docs.sh
Index: src/github.com/tsuru/tsuru-client/vendor/github.com/docker/docker/pkg/archive/archive_unix.go
--- src/github.com/tsuru/tsuru-client/vendor/github.com/docker/docker/pkg/archive/archive_unix.go.orig 2017-12-10 15:06:12.000000000 +0100
+++ src/github.com/tsuru/tsuru-client/vendor/github.com/docker/docker/pkg/archive/archive_unix.go 2017-12-10 19:47:14.432069000 +0100
@@ -62,7 +62,7 @@
s, ok := stat.(*syscall.Stat_t)
if ok {
- inode = s.Ino
+ inode = uint64(s.Ino)
}
return
Index: src/github.com/tsuru/tsuru-client/vendor/github.com/docker/docker/pkg/archive/changes_unix.go
--- src/github.com/tsuru/tsuru-client/vendor/github.com/docker/docker/pkg/archive/changes_unix.go.orig 2017-12-10 15:06:12.000000000 +0100
+++ src/github.com/tsuru/tsuru-client/vendor/github.com/docker/docker/pkg/archive/changes_unix.go 2017-12-10 19:47:14.432187000 +0100
@@ -29,7 +29,7 @@
}
func getIno(fi os.FileInfo) uint64 {
- return fi.Sys().(*syscall.Stat_t).Ino
+ return uint64(fi.Sys().(*syscall.Stat_t).Ino)
}
func hasHardlinks(fi os.FileInfo) bool {