File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ func execProcess(context *cli.Context) (int, error) {
115
115
return - 1 , err
116
116
}
117
117
if status == libcontainer .Stopped {
118
- return - 1 , fmt .Errorf ("cannot exec a container that has run and stopped" )
118
+ return - 1 , fmt .Errorf ("cannot exec a container that has stopped" )
119
119
}
120
120
path := context .String ("process" )
121
121
if path == "" && len (context .Args ()) == 1 {
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ your host.`,
47
47
hasError = true
48
48
}
49
49
case libcontainer .Stopped :
50
- fmt .Fprintln (os .Stderr , "cannot start a container that has run and stopped" )
50
+ fmt .Fprintln (os .Stderr , "cannot start a container that has stopped" )
51
51
hasError = true
52
52
case libcontainer .Running :
53
53
fmt .Fprintln (os .Stderr , "cannot start an already running container" )
You can’t perform that action at this time.
0 commit comments