Build: Fix hadoop integ test error on windows (#24885)

This commit fixes the error message to escape the dollar sign for
referencing a literal `$HADOOP_HOME`, which caused an error while trying
to generate an error.

closes #24878
This commit is contained in:
Ryan Ernst 2017-05-25 12:11:33 -07:00 committed by GitHub
parent f60f79f361
commit 59c052e76f
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ if (Os.isFamily(Os.FAMILY_WINDOWS)) {
Files.exists(path.resolve("bin").resolve("hdfs.dll"))) {
fixtureSupported = true
} else {
throw new IllegalStateException("HADOOP_HOME: " + path.toString() + " is invalid, does not contain hadoop native libraries in $HADOOP_HOME/bin");
throw new IllegalStateException("HADOOP_HOME: ${path} is invalid, does not contain hadoop native libraries in \$HADOOP_HOME/bin");
}
}
} else {