simplify the use of toolexecCmd in reverse

The list flags are entirely unused, so they can be omitted.
The only argument that matters is the package argument to load.
While here, update the TODO, as it no longer applies.
pull/895/head
Daniel Martí 4 months ago
parent 4e71f1aee3
commit b6eabea247
No known key found for this signature in database

@ -33,16 +33,9 @@ One can reverse a captured panic stack trace as follows:
} }
pkg, args := args[0], args[1:] pkg, args := args[0], args[1:]
listArgs := []string{ // We don't actually run `go list -toolexec=garble`; we only use toolexecCmd
"-json", // to ensure that sharedCache.ListedPackages is filled.
"-deps", _, err := toolexecCmd("list", []string{pkg})
"-export",
}
listArgs = append(listArgs, flags...)
listArgs = append(listArgs, pkg)
// TODO: We most likely no longer need this "list -toolexec" call, since
// we use the original build IDs.
_, err := toolexecCmd("list", listArgs)
defer os.RemoveAll(os.Getenv("GARBLE_SHARED")) defer os.RemoveAll(os.Getenv("GARBLE_SHARED"))
if err != nil { if err != nil {
return err return err

Loading…
Cancel
Save