mirror of
https://github.com/audacity/wxWidgets.git
synced 2025-12-10 19:37:18 -06:00
Fix incorrect wxExecute() use in wxrc.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74987 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
882b1e5d74
commit
04d13e2054
@ -559,7 +559,8 @@ void XmlResApp::MakePackageZIP(const wxArrayString& flist)
|
||||
wxSetWorkingDirectory(parOutputPath);
|
||||
int execres = wxExecute(wxT("zip -9 -j ") +
|
||||
wxString(flagVerbose ? wxT("\"") : wxT("-q \"")) +
|
||||
parOutput + wxT("\" ") + files, true);
|
||||
parOutput + wxT("\" ") + files,
|
||||
wxEXEC_BLOCK);
|
||||
wxSetWorkingDirectory(cwd);
|
||||
if (execres == -1)
|
||||
{
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user