Skip to content

Commit

Permalink
Test #4
Browse files Browse the repository at this point in the history
  • Loading branch information
bdbcat committed Dec 18, 2023
1 parent c8779b5 commit 93167f8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION.cmake
Original file line number Diff line number Diff line change
@@ -1 +1 @@
SET(OCPN_VERSION "1.30.0.8")
SET(OCPN_VERSION "1.30.0.9")
7 changes: 4 additions & 3 deletions src/s63chart.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ void validate_SENC_util(void)
#ifndef __WXMSW__
cmd.Replace(" ", "\\ ");
#endif
cmd += " -a"; // get version
cmd.Append("\"");
cmd += " -a"; // get version

wxString msgc;
msgc += _T("{");
Expand Down Expand Up @@ -253,12 +253,13 @@ wxArrayString exec_SENCutil_sync( wxString cmd, bool bshowlog )
return ret_array;
}
wxString exec = g_sencutil_bin;
cmd.Prepend("\"");
cmd.Append("\"");

#ifndef __WXMSW__
exec.Replace(" ", "\\ ");
#endif
cmd.Prepend(exec + _T(" "));
cmd.Prepend("\"");
cmd.Append("\"");

wxLogMessage( cmd );

Expand Down

0 comments on commit 93167f8

Please sign in to comment.