Skip to content

Commit

Permalink
Update vndr commit to latest
Browse files Browse the repository at this point in the history
Some fixes and it also preserves directories with *.c files now.

See LK4D4/vndr@a6e196d...1fc68ee

Signed-off-by: Vincent Demeester <[email protected]>
  • Loading branch information
vdemeester committed May 24, 2018
1 parent fd61653 commit 08d6c18
Show file tree
Hide file tree
Showing 25 changed files with 3,262 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM golang:1.10.2-alpine

RUN apk add -U git make bash coreutils ca-certificates curl

ARG VNDR_SHA=a6e196d8b4b0cbbdc29aebdb20c59ac6926bb384
ARG VNDR_SHA=1fc68ee0c852556a9ed53cbde16247033f104111
RUN go get -d github.com/LK4D4/vndr && \
cd /go/src/github.com/LK4D4/vndr && \
git checkout -q "$VNDR_SHA" && \
Expand Down
4 changes: 4 additions & 0 deletions vendor/github.com/docker/docker/contrib/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions vendor/github.com/docker/docker/contrib/nnp-test/nnp-test.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions vendor/github.com/docker/docker/contrib/syscall-test/acct.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions vendor/github.com/docker/docker/contrib/syscall-test/exit32.s

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

63 changes: 63 additions & 0 deletions vendor/github.com/docker/docker/contrib/syscall-test/ns.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions vendor/github.com/docker/docker/contrib/syscall-test/raw.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions vendor/github.com/docker/docker/contrib/syscall-test/setgid.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions vendor/github.com/docker/docker/contrib/syscall-test/setuid.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 30 additions & 0 deletions vendor/github.com/docker/docker/contrib/syscall-test/socket.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

63 changes: 63 additions & 0 deletions vendor/github.com/docker/docker/contrib/syscall-test/userns.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

4 comments on commit 08d6c18

@unkaktus
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh wow, cli now uses x/crypto/otr? I guess that something went wrong as nothing out there uses it.

@vdemeester
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nogoegst I think it's there mainly because of the c files 😅

@unkaktus
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vdemeester, so just because there are some .c files vndr just included this package as x/crypto is being used somewhere? 🤦‍♂️

@vdemeester
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nogoegst I think so yes

Please sign in to comment.