--- Do.Platform.Linux/src/Do.Platform/Do.Platform.Linux/EnvironmentService.cs.orig 2011-05-05 18:41:30.000000000 +0800 +++ Do.Platform.Linux/src/Do.Platform/Do.Platform.Linux/EnvironmentService.cs 2011-07-16 10:32:47.694228533 +0800 @@ -123,7 +123,8 @@ foreach (string argument in arguments) { executor.StandardInput.Write ("{0}\0", argument); } - Log.Debug ("Executing command “{0}”", arguments.Aggregate ((cur, item) => cur + " " + item)); + executor.StandardInput.Close (); + Log.Debug ("Executing command “{0} {1}”", command, arguments.Aggregate ((cur, item) => cur + " " + item)); return executor; }