Skip to content

Commit

Permalink
forgot about that semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasdr committed Jan 23, 2025
1 parent cdf1a2d commit 9e7b474
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/minitscript/minitscript/ApplicationMethods.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const string ApplicationMethods::execute(const string& command, int* exitCode, s
string result;
auto _command = command;
#if defined(_MSC_VER)
_command = "chcp 65001 > nul && " + _command
_command = "chcp 65001 > nul && " + _command;
#endif
auto _exitCode = EXIT_FAILURE;
// error stream
Expand Down

0 comments on commit 9e7b474

Please sign in to comment.