Skip to content

Commit

Permalink
PR changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sboardwell committed Sep 17, 2024
1 parent b2a3113 commit 64308ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public final class LibraryRecord {
this.changelog = changelog;
this.cachingConfiguration = cachingConfiguration;
logString = this.name + "@" + this.version;
if (StringUtils.isNotBlank(libraryPath) && libraryPath != ".") {
if (StringUtils.isNotBlank(libraryPath) && !libraryPath.equals(".")) {
this.libraryPath = libraryPath;
this.directoryName = directoryNameFor(name, version, String.valueOf(trusted), source, libraryPath);
logString += " from libraryPath: " + libraryPath;
Expand Down

0 comments on commit 64308ca

Please sign in to comment.