diff options
author | Ayush Ranjan <ayushranjan@google.com> | 2020-07-23 07:27:35 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-07-23 07:29:06 -0700 |
commit | c9399797d8defbdb41f483d0bdbeb96c5777c82f (patch) | |
tree | 8fa3cd2e23bb8e04a2981420b4c7242f2069cbf7 /Makefile | |
parent | bd98f820141208d9f19b0e12dee93f6f6de3ac97 (diff) |
Fix kokoro presubmits!
Fixed the following error:
tools/bazel.mk:119: *** Destination not provided.. Stop.
The issue was that we were running all make commands in a subshell so variables
like $T were not passed on.
The other issue was related to credentials. The test passed locally but not on
kokoro, the only difference in the workflow was the credentials bit.
Also fixed up some other tiny issues I came across, were not blockers.
PiperOrigin-RevId: 322782457
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -16,7 +16,7 @@ # Helpful pretty-printer. MAKEBANNER := \033[1;34mmake\033[0m -submake = echo -e '$(MAKEBANNER) $1' >&2; sh -c '$(MAKE) $1' +submake = echo -e '$(MAKEBANNER) $1' >&2; $(MAKE) $1 # Described below. OPTIONS := |