diff --git a/cmd/ctr/commands/images/unmount.go b/cmd/ctr/commands/images/unmount.go index 440c0af1e..3f54f63b4 100644 --- a/cmd/ctr/commands/images/unmount.go +++ b/cmd/ctr/commands/images/unmount.go @@ -43,7 +43,7 @@ var unmountCommand = cli.Command{ target = context.Args().First() ) if target == "" { - return fmt.Errorf("please provide a target path to mount to") + return fmt.Errorf("please provide a target path to unmount from") } client, ctx, cancel, err := commands.NewClient(context)