Add a leading space after the comment sign
Fix coding standards Signed-off-by: Tony Fang <nhfang@amazon.com>
This commit is contained in:
parent
f53417921d
commit
8a47c6910f
@ -152,7 +152,7 @@ If foobar.tar contains an OCI ref named "latest" and anonymous ref "sha256:deadb
|
|||||||
if platSpec.OS != "" {
|
if platSpec.OS != "" {
|
||||||
opts = append(opts, image.WithUnpack(platSpec, snapshotter))
|
opts = append(opts, image.WithUnpack(platSpec, snapshotter))
|
||||||
} else {
|
} else {
|
||||||
//empty spec means all platforms
|
// Empty spec means all platforms
|
||||||
var emptySpec ocispec.Platform
|
var emptySpec ocispec.Platform
|
||||||
opts = append(opts, image.WithUnpack(emptySpec, snapshotter))
|
opts = append(opts, image.WithUnpack(emptySpec, snapshotter))
|
||||||
}
|
}
|
||||||
|
@ -114,7 +114,7 @@ command. As part of this process, we do the following:
|
|||||||
}
|
}
|
||||||
sopts = append(sopts, image.WithPlatforms(p...))
|
sopts = append(sopts, image.WithPlatforms(p...))
|
||||||
|
|
||||||
//set unpack configuration
|
// Set unpack configuration
|
||||||
for _, platform := range p {
|
for _, platform := range p {
|
||||||
sopts = append(sopts, image.WithUnpack(platform, context.String("snapshotter")))
|
sopts = append(sopts, image.WithUnpack(platform, context.String("snapshotter")))
|
||||||
}
|
}
|
||||||
@ -125,7 +125,7 @@ command. As part of this process, we do the following:
|
|||||||
if context.Bool("metadata-only") {
|
if context.Bool("metadata-only") {
|
||||||
sopts = append(sopts, image.WithAllMetadata)
|
sopts = append(sopts, image.WithAllMetadata)
|
||||||
// Any with an empty set is None
|
// Any with an empty set is None
|
||||||
// TODO: Specify way to specify not default platorm
|
// TODO: Specify way to specify not default platform
|
||||||
// config.PlatformMatcher = platforms.Any()
|
// config.PlatformMatcher = platforms.Any()
|
||||||
} else if context.Bool("all-metadata") {
|
} else if context.Bool("all-metadata") {
|
||||||
sopts = append(sopts, image.WithAllMetadata)
|
sopts = append(sopts, image.WithAllMetadata)
|
||||||
|
@ -258,7 +258,7 @@ func getSupportedPlatform(uc transfer.UnpackConfiguration, supportedPlatforms []
|
|||||||
// If platform matched and SnapshotterKey is empty, we assume client didn't pass SnapshotterKey
|
// If platform matched and SnapshotterKey is empty, we assume client didn't pass SnapshotterKey
|
||||||
// use default Snapshotter
|
// use default Snapshotter
|
||||||
if sp.Platform.Match(uc.Platform) {
|
if sp.Platform.Match(uc.Platform) {
|
||||||
//assuming sp.SnapshotterKey is not empty
|
// Assume sp.SnapshotterKey is not empty
|
||||||
if uc.Snapshotter == sp.SnapshotterKey {
|
if uc.Snapshotter == sp.SnapshotterKey {
|
||||||
return true, sp
|
return true, sp
|
||||||
} else if uc.Snapshotter == "" && sp.SnapshotterKey == containerd.DefaultSnapshotter {
|
} else if uc.Snapshotter == "" && sp.SnapshotterKey == containerd.DefaultSnapshotter {
|
||||||
|
Loading…
Reference in New Issue
Block a user