Actual fix for compression!

This commit is contained in:
David Anderson
2005-08-25 08:02:48 +00:00
parent 92653ceebc
commit 0176d3a2ae
5 changed files with 8 additions and 8 deletions

View File

@ -19,8 +19,8 @@ namespace AMXXRelease
ProcessStartInfo info = new ProcessStartInfo();
info.FileName = m_Cfg.CompressPath();
info.WorkingDirectory = m_Cfg.OutputPath();
info.Arguments = "-r " + target + " " + dir + "\\*.*";
info.WorkingDirectory = dir;
info.Arguments = "-r " + target + " " + "*.*";
info.UseShellExecute = false;
Process p = Process.Start(info);