Skip to content

Commit

Permalink
Fixed bug with /IX skipping first three char of argument
Browse files Browse the repository at this point in the history
  • Loading branch information
honkstar1 committed Aug 4, 2021
1 parent 8e2598b commit ca0ecfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/EACopy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ bool readSettings(Settings& outSettings, int argc, wchar_t* argv[])
logErrorf(L"Can't combine file(s) with /IX");
return false;
}
outSettings.filesExcludeFiles.push_back(arg + 3);
outSettings.filesExcludeFiles.push_back(arg);
}
else
{
Expand Down

0 comments on commit ca0ecfa

Please sign in to comment.