Skip to content

Commit

Permalink
fixed various dumb bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
L5050 committed May 8, 2024
1 parent 9b42bf4 commit 168faf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ bool checkExtracted(int argc, char* argv[]) {
std::replace(pathStr.begin(), pathStr.end(), '\\', '/');

cout << "Extracting from " << pathStr << "...\n";
string command = "wit x " + pathStr + " extracted";
string command = "wit x \"" + pathStr + "\" extracted";
int result = system(command.c_str());
if (result != 0) {
cerr << "Error occurred during extraction from " << pathStr << '\n';
Expand Down

0 comments on commit 168faf9

Please sign in to comment.