diff src/luan/modules/IoLuan.java @ 1107:590437ce0be3

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 04 Jul 2017 02:41:03 -0600
parents 27bf094f0ae3
children e8fc6712b468
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);
 			}