-
Notifications
You must be signed in to change notification settings - Fork 885
feat(support): add template info to support bundle #12451
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
Conversation
71fea47
to
7c6be17
Compare
7c6be17
to
2d495c2
Compare
zipBytes[2] = 0o5 | ||
zipBytes[3] = 0o6 |
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.
note: the formatter made these octal of its own volition; likely due to the leading 0
.
@@ -114,7 +114,6 @@ func assertBundleContents(t *testing.T, path string) { | |||
require.NoError(t, err, "open zip file") | |||
defer r.Close() | |||
for _, f := range r.File { | |||
require.NotZero(t, f.UncompressedSize64, "file %q should not be empty", f.Name) |
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.
note: removing this as it's redundant with other checks
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.
👍
@Emyrk raised that this would potentially be helpful for debugging certain types of workspace-related issues.
NOTE: there is currently an issue with how we generate ZIP files from TAR files. Fixing in a separate PR.