Skip to content

Commit

Permalink
Cleanup, cosmetics
Browse files Browse the repository at this point in the history
  • Loading branch information
matzf committed Aug 14, 2019
1 parent ade566c commit b4777f7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker/perapp/base/Dockerfile.builder
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM scion:latest
RUN make -s all setcap GOGEN_SKIP=1 && bazel clean
RUN make -s GOGEN_SKIP=1 all setcap && bazel clean
2 changes: 1 addition & 1 deletion go/proto/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ go_library(
)

# Note: :structs and :capnp are only used to manually regenerate git-controlled
# source files. These targets are no dependencies of other bazel targets.
# source files. These targets are not dependencies of other bazel targets.
# Instead, they are built only in `make gogen`.
# To differentiate from the source files used in go_default_library, the files
# are generated into a subdirectory `gogen/`
Expand Down
2 changes: 1 addition & 1 deletion tools/ci/checkgogen
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

set -ex

./docker.sh exec "set -eo pipefail; ( cp -R go/proto/ /tmp/; make gogen; diff /tmp/proto/ go/proto/ ) |& tee logs/checkgogen.run"
./docker.sh exec "set -eo pipefail; ( cp -R go/proto/ /tmp/; make gogen; diff -ur /tmp/proto/ go/proto/ ) |& tee logs/checkgogen.run"

0 comments on commit b4777f7

Please sign in to comment.