Skip to content

Commit 46e4c64

Browse files
authored
Update exit_code.go (#109)
This is a purely cosmetic patch to insert a space between the invalid exit code and the next sentence, which otherwise runs together.
1 parent bcfe28e commit 46e4c64

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

shell/exit_code.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func (e *ErrorInvalidExitCode) Error() string {
3333
if e == nil {
3434
return "<nil>"
3535
}
36-
return fmt.Sprintf("Script exited with non-zero exit status: %d."+
36+
return fmt.Sprintf("Script exited with non-zero exit status: %d. "+
3737
"Allowed exit codes are: %v",
3838
e.Code, e.Allowed)
3939
}

0 commit comments

Comments
 (0)