mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2025-02-04 17:50:30 +03:00
Fix for linux 64bit filenames
This commit is contained in:
parent
862ee2029a
commit
41f38424ee
@ -38,7 +38,11 @@ namespace AMXXRelease
|
|||||||
c.WaitForExit();
|
c.WaitForExit();
|
||||||
|
|
||||||
|
|
||||||
info.Arguments = "zcvf " + target + ".tar.gz " + file_list;
|
|
||||||
|
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;
|
info.UseShellExecute = false;
|
||||||
|
|
||||||
Process p = Process.Start(info);
|
Process p = Process.Start(info);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user