From c5e36a4e3cae6b6ec8e6d347888eeec1da3a3c7d Mon Sep 17 00:00:00 2001 From: David Anderson Date: Fri, 3 Aug 2007 17:31:42 +0000 Subject: [PATCH] fixed a possible bad bug in linux builder --- installer/AMXXRelease/AMXXRelease.exe | Bin 32768 -> 32768 bytes installer/AMXXRelease/LinuxBuilder.cs | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/AMXXRelease/AMXXRelease.exe b/installer/AMXXRelease/AMXXRelease.exe index 2d619247b342a1be46d88c2aa8bfb1c1b4db401a..3c4cd60672c7ba84122de52980ed97a8a5fc5a7f 100755 GIT binary patch delta 122 zcmZo@U}|V!n$W=%nzpe^URm6Xfq^UE97qVWapoHVY0i9OAi4Q~vV#Z{Q^aN_i&>%q zrZpOOS-XDu?0Y@$YUq|Yp3Q4~7YK7PMO@}$U|?hbstQY-!N_XLV9a2!`E$}{D0A}a L6la)V3a>N(4rL;g delta 122 zcmZo@U}|V!n$W@YC3Rz$yt23v0|OUlzA>0I1CsgXKth;p^8sZC5vEJwo0%+Ti3)J> zNhvO^t8!|KD6zF*mfW^^jqd_su1n#UxfmE28Gx$75@#^7nlM-}7;XNXv>D2rygJ1h JCYZu24FC)(B4Pjl diff --git a/installer/AMXXRelease/LinuxBuilder.cs b/installer/AMXXRelease/LinuxBuilder.cs index 1b79386e..bffd253b 100755 --- a/installer/AMXXRelease/LinuxBuilder.cs +++ b/installer/AMXXRelease/LinuxBuilder.cs @@ -117,10 +117,10 @@ public override string BuildModule(Module module) info.RedirectStandardOutput = true; p = Process.Start(info); + string output = p.StandardOutput.ReadToEnd(); p.WaitForExit(); p.Close(); - string output = p.StandardOutput.ReadToEnd(); if (output.IndexOf("Handle:") == -1) return null;