Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions utils_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,9 @@ func (r *runner) checkTerminal(config *specs.Process) error {
}

func validateProcessSpec(spec *specs.Process) error {
if spec == nil {
return fmt.Errorf("process property must not be empty")
}
if spec.Cwd == "" {
return fmt.Errorf("Cwd property must not be empty")
}
Expand Down