I think the parenthesis are needed

This commit is contained in:
Matt Nadareski
2016-04-20 10:46:10 -07:00
parent 4a4b843bf4
commit daef24697e

View File

@@ -863,7 +863,7 @@ Make a selection:
// Strip any quotations from the name
input = input.Replace("\"", "");
if (input != "" && File.Exists(input) || Directory.Exists(input))
if (input != "" && (File.Exists(input) || Directory.Exists(input)))
{
TrimMerge sg = new TrimMerge(input, root, rename, force, logger);
sg.Process();