Skip to content
Open
Show file tree
Hide file tree
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 .github/contributors.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,3 +98,6 @@ users:
parthdagia05:
name: Parth Dagia
email: parth.24bcs10414@sst.scaler.com
mdryaan:
name: Md Raiyan
email: alikhurshid842001@gmail.com
2 changes: 1 addition & 1 deletion cmd/urunc/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ func handleNsenterRet(initSock *os.File, reexec *exec.Cmd) (int, error) {
}
if !status.Success() {
_ = reexec.Wait()
return -1, fmt.Errorf("nsenter unsuccessful exit: %w", err)
return -1, fmt.Errorf("nsenter unsuccessful exit: %d", status.ExitCode())
}

return pid.Stage2Pid, nil
Expand Down