We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3985b7 commit 8872566Copy full SHA for 8872566
base/process.jl
@@ -797,7 +797,7 @@ function process_status(s::Process)
797
process_signaled(s) ? "ProcessSignaled("*string(s.termsignal)*")" :
798
#process_stopped(s) ? "ProcessStopped("*string(process_stop_signal(s))*")" :
799
process_exited(s) ? "ProcessExited("*string(s.exitcode)*")" :
800
- @assert(false, "process status error")
+ error("Process status error. Could not determine status of $s")
801
end
802
803
## implementation of `cmd` syntax ##
0 commit comments