Fixed two minor annoyances
1) Paths in config file are now checked before building is attempted (prevents some potential crashes) 2) The compression routines can now handle spaces in the 'output' path
This commit is contained in:
@ -40,9 +40,9 @@ namespace AMXXRelease
|
||||
|
||||
|
||||
if (m_Cfg.MakeOpts().IndexOf("amd64") != -1)
|
||||
info.Arguments = "zcvf " + target + "_amd64.tar.gz " + file_list;
|
||||
info.Arguments = "zcvf \"" + target + "_amd64.tar.gz\" " + file_list;
|
||||
else
|
||||
info.Arguments = "zcvf " + target + ".tar.gz " + file_list;
|
||||
info.Arguments = "zcvf \"" + target + ".tar.gz\" " + file_list;
|
||||
info.UseShellExecute = false;
|
||||
|
||||
Process p = Process.Start(info);
|
||||
|
Reference in New Issue
Block a user