From 0cb158edb899f0d9493fb78d27f1b309c480805a Mon Sep 17 00:00:00 2001 From: Andrii Kurdiumov Date: Sat, 21 Sep 2019 23:50:44 +0600 Subject: [PATCH] Fix error message when VS do not found This change required after code for finding VS location was moved to vsconfig.gradle and this message was not changed appropriately. --- GPL/nativeBuildProperties.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPL/nativeBuildProperties.gradle b/GPL/nativeBuildProperties.gradle index f289ca112d..9c26afd827 100644 --- a/GPL/nativeBuildProperties.gradle +++ b/GPL/nativeBuildProperties.gradle @@ -51,7 +51,7 @@ task CheckToolChain { if (org.gradle.internal.os.OperatingSystem.current().isWindows()) { // ensure that required MS Visual Studio is installed where expected String msg = "Microsoft Visual Studio install not found: ${VISUAL_STUDIO_BASE_DIR}\n" + - "Adjust path in Ghidra/GPL/nativeBuildProperties.gradle if needed." + "Adjust path in Ghidra/GPL/vsconfig.gradle if needed." if (!file(VISUAL_STUDIO_BASE_DIR).exists() || !file(VISUAL_STUDIO_INSTALL_DIR).exists()) { throw new GradleException(msg); }