Updated file error path info

This commit is contained in:
nathan 2018-01-24 17:30:37 +01:00
parent 81ebe1cc64
commit 31bafe045c
1 changed files with 1 additions and 1 deletions

View File

@ -548,7 +548,7 @@ class ProjectJava extends Project<ProjectJava> {
File file = FileUtil.normalize(location);
if (!file.canRead()) {
throw new FileNotFoundRuntimeException("Unable to read cross compile jar: " + location);
throw new FileNotFoundRuntimeException("Unable to read cross compile jar: " + file.getAbsolutePath());
}
args.add(file.getAbsolutePath());