From 07f9d0ec428f22b9df1da4e3ad68d7c4f99961bf Mon Sep 17 00:00:00 2001 From: Jim Procter Date: Thu, 8 Sep 2016 18:15:45 +0100 Subject: [PATCH] JAL-2119 pass/resolve real help dir in link checker --- build.xml | 4 ++-- utils/HelpLinksChecker.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.xml b/build.xml index 3a2b07a..7feacfb 100755 --- a/build.xml +++ b/build.xml @@ -929,8 +929,8 @@ - - + + diff --git a/utils/HelpLinksChecker.java b/utils/HelpLinksChecker.java index 7b676cc..a0853a9 100644 --- a/utils/HelpLinksChecker.java +++ b/utils/HelpLinksChecker.java @@ -85,7 +85,7 @@ public class HelpLinksChecker void checkLinks(String helpDirectoryPath) throws IOException { System.out.println("Checking help file links"); - File helpFolder = new File(helpDirectoryPath); + File helpFolder = new File(helpDirectoryPath).getCanonicalFile(); if (!helpFolder.exists()) { System.out.println("Can't find " + helpDirectoryPath); -- 1.7.10.2