-
Notifications
You must be signed in to change notification settings - Fork 40k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hack: Add $GOPATH to hack/update-generated-xxx.sh scripts #10987
hack: Add $GOPATH to hack/update-generated-xxx.sh scripts #10987
Conversation
GCE e2e build/test passed for commit c1bb7030db4c6cd8a60b73936d51ee3c4c0beff4. |
@@ -40,7 +45,7 @@ package ${version} | |||
// AUTO-GENERATED FUNCTIONS START HERE | |||
EOF | |||
|
|||
GOPATH=$(godep path):$GOPATH go run cmd/gendeepcopy/deep_copy.go -v ${version} -f - -o "${version}=" >> $TMPFILE | |||
GOPATH=$(godep path):${GOPATH:=} go run cmd/gendeepcopy/deep_copy.go -v ${version} -f - -o "${version}=" >> $TMPFILE |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please change the above script so that it's exactly the same?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed this erroneous change. The others should be enough.
So that not everyone has to figure this out.
c1bb703
to
a38a148
Compare
LGTM |
cc @davidopp for lead LGTM |
GCE e2e build/test failed for commit a38a148. |
jenkins failure is unrelated to these changes: |
@k8s-bot test this please |
GCE e2e build/test failed for commit a38a148. |
Cluster didn't started. |
@k8s-bot test this please |
GCE e2e build/test failed for commit a38a148. |
LGTM Jenkins failures are not related to this PR. I'll re-run anyway but this is OK to merge. |
@k8s-bot test this please |
GCE e2e build/test passed for commit a38a148. |
hack: Add $GOPATH to hack/update-generated-xxx.sh scripts
So that not everyone has to figure this out.