Skip to content

Commit

Permalink
#527: fix of fix (#549)
Browse files Browse the repository at this point in the history
  • Loading branch information
hohwille authored Aug 22, 2024
1 parent 908d52c commit 58c43f0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ private Path findIdeRoot(Path ideHomePath) {
}
} else if (!ideRootPath.equals(rootPath)) {
warning("Variable IDE_ROOT is set to '{}' but for your project '{}' the path '{}' would have been expected.", rootPath,
(this.ideHome == null) ? "undefined" : this.ideHome.getFileName(), ideRootPath);
(ideHomePath == null) ? "undefined" : ideHomePath.getFileName(), ideRootPath);
}
}
}
Expand Down

0 comments on commit 58c43f0

Please sign in to comment.