Older versions of Go do not format these comments, so we can already
reformat them ahead of time to prevent gofmt linting failing once
we update to Go 1.19 or up.
Result of:
gofmt -s -w $(find . -type f -name '*.go' | grep -v "/vendor/")
With some manual adjusting.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
(cherry picked from commit 82427d1a07)
Signed-off-by: Cory Snider <csnider@mirantis.com>
17 lines
529 B
Go
17 lines
529 B
Go
/*
|
|
Package winresources is used to embed Windows resources into docker.exe.
|
|
These resources are used to provide
|
|
|
|
- Version information
|
|
- An icon
|
|
- A Windows manifest declaring Windows version support
|
|
|
|
The resource object files are generated when building with scripts/build/binary .
|
|
The resource source files are located in scripts/winresources.
|
|
This occurs automatically when you run scripts/build/windows.
|
|
|
|
These object files are picked up automatically by go build when this package
|
|
is included.
|
|
*/
|
|
package winresources
|