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:
@@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user