Skip to content

Commit 05c91ee

Browse files
committed
fix: use correct quote
1 parent bb6601c commit 05c91ee

File tree

1 file changed

+2
-2
lines changed
  • cli/src/main/java/org/owasp/dependencycheck

1 file changed

+2
-2
lines changed

cli/src/main/java/org/owasp/dependencycheck/App.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,8 +381,8 @@ private Set<File> scanAntStylePaths(List<String> antStylePaths, int symLinkDepth
381381
final int pos = getLastFileSeparator(include);
382382
final String tmpBase = include.substring(0, pos);
383383
//fix for windows style paths scanning c:/temp.
384-
if (tmpBase.endsWith(':')) {
385-
tmpBase += '/';
384+
if (tmpBase.endsWith(":")) {
385+
tmpBase += "/";
386386
}
387387
final String tmpInclude = include.substring(pos + 1);
388388
if (tmpInclude.indexOf('*') >= 0 || tmpInclude.indexOf('?') >= 0

0 commit comments

Comments
 (0)