Return exit code 127 on InAccessibleExecutable.

This commit is contained in:
Kare Morstol
2015-09-25 02:26:37 +02:00
parent 89e06acc72
commit bc4f0d76ca
+2 -1
View File
@@ -114,7 +114,8 @@ public enum ShellError: ErrorType, Equatable {
case .ReturnedErrorCode(let code):
return code
case .InAccessibleExecutable:
return EXIT_FAILURE
// according to http://tldp.org/LDP/abs/html/exitcodes.html
return 127
}
}
}