Mercurial Hosting > luan
changeset 1107:590437ce0be3
minor
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 04 Jul 2017 02:41:03 -0600 |
parents | 151dc95f5e73 |
children | f12c7cab0e14 |
files | src/luan/modules/IoLuan.java |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/luan/modules/IoLuan.java Mon Jul 03 04:22:46 2017 -0600 +++ b/src/luan/modules/IoLuan.java Tue Jul 04 02:41:03 2017 -0600 @@ -816,7 +816,7 @@ int exitVal = proc.exitValue(); if( exitVal != 0 ) { Reader err = new InputStreamReader(proc.getErrorStream()); - String error = "error in: "+cmd+"\n"+Utils.readAll(err); + String error = "exit value "+exitVal+" in: "+cmd+"\n"+Utils.readAll(err); err.close(); throw new LuanException(error); }