Fix for linux 64bit filenames
This commit is contained in:
parent
862ee2029a
commit
41f38424ee
|
@ -38,6 +38,10 @@ public override void CompressDir(string target, string dir)
|
|||
c.WaitForExit();
|
||||
|
||||
|
||||
|
||||
if (m_Cfg.MakeOpts().IndexOf("amd64") != -1)
|
||||
info.Arguments = "zcvf " + target + "_amd64.tar.gz " + file_list;
|
||||
else
|
||||
info.Arguments = "zcvf " + target + ".tar.gz " + file_list;
|
||||
info.UseShellExecute = false;
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user