Use different exit code by default.

git-svn-id: http://lampsvn.epfl.ch/svn-repos/scala/scala/trunk@16273 5e8d7ff9-d8ef-0310-90f0-a4852d11357a
This commit is contained in:
phaller 2008-10-15 21:44:32 +00:00
parent d8564d3402
commit cdf5b2bc35
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ class Worker(val fileManager: FileManager) extends Actor {
try {
proc.exitValue()
} catch {
case e: IllegalThreadStateException => 1
case e: IllegalThreadStateException => 0
}
}