Skip to content

Commit 9ae08d6

Browse files
Fixed error string
1 parent 2d81a4e commit 9ae08d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cmd/container/export.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import (
3434
// Export exports a container's filesystem as a tar archive
3535
func Export(ctx context.Context, client *containerd.Client, containerReq string, options types.ContainerExportOptions) error {
3636
if runtime.GOOS == "windows" {
37-
return fmt.Errorf("Nerdctl export command is not supported on Windows")
37+
return fmt.Errorf("export command is not supported on Windows")
3838
}
3939

4040
walker := &containerwalker.ContainerWalker{

0 commit comments

Comments
 (0)