-
-
Notifications
You must be signed in to change notification settings - Fork 262
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
add a "bug" command to pre-fill a bug template #219
Comments
By default, For the use case where someone wants to be in control, or more easily copy-paste the output, we could also have |
A small note, the environment variables can expose the user's "private" information (e.g. the name of his user account in the system) |
That is why I said "explicit Go env vars". I don't think anything in
The seed should be included via either the command that was run, or the error (#212). We can't attach entire sources, or even partial ones, because I imagine that wouldn't be OK to automate for the vast majority of users. However, when they report a compile error mentioning the real |
Modelled after Go's own issue template, with some tweaks to be more relevant to our obfuscator tool. For burrowers#219.
#390 adds a template; this issue remains open for now, until we implement |
Modelled after Go's own issue template, with some tweaks to be more relevant to our obfuscator tool. For #219.
This idea is copied from other projects.
We could set up a bug report template, requesting lots of information about the user's system, but that has two issues:
go version
,go env
, etc.If we make
garble bug
the main and recommended way to file bugs, both of those problems sort of go away. If someone files a bug without usinggarble bug
, we can tell them to use it instead.A
garble bug
could potentially do extra stuff in the future. For example, give high-level details of the previousgarble build
command, if it failed, without leaking crucial information about the code being built. Such information could include:With issues like #218, the "what was the error output?" bit would be extra useful, since it would contain more context.
The text was updated successfully, but these errors were encountered: