Skip to content

Commit

Permalink
Fix weird indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
damonyu666 committed Jul 30, 2023
1 parent 24e770f commit f900ac4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/StubExecutable/StubExecutable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ std::wstring FindLatestAppDir()

// Skip the directory which contains a .not-finished file
std::wstring appFolder = fileInfo.cFileName;
std::wstring dirPath = ourDir.substr(0, ourDir.size() - 5) + appFolder;
if (FileExists(dirPath + L"\\.not-finished")) {
continue;
}
std::wstring dirPath = ourDir.substr(0, ourDir.size() - 5) + appFolder;
if (FileExists(dirPath + L"\\.not-finished")) {
continue;
}

if (thisVer > acc) {
acc = thisVer;
Expand Down

0 comments on commit f900ac4

Please sign in to comment.