mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 01:39:21 +02:00
cleanup: updated references to InstallationGuide.html with GettingStarted.md
Removed references to InstallationGuide.html and changed it to GettingStarted.md
This commit is contained in:
parent
4a46edc9fe
commit
0a2b2b6569
4 changed files with 4 additions and 4 deletions
|
@ -45,7 +45,7 @@ def configureVisualStudio() {
|
|||
println " -> Visual Studio vswhere.exe returned an error code (${vswhereExit})!"
|
||||
}
|
||||
println " -> Please confirm ${vswherePath} is version 2.5 or later."
|
||||
println " -> Please check README.md or InstallationGuide.html to verify you are using a supported version of Visual Studio."
|
||||
println " -> Please check README.md or GettingStarted.md to verify you are using a supported version of Visual Studio."
|
||||
return
|
||||
}
|
||||
def vswhereJson = new groovy.json.JsonSlurper().parseText(vswhereOutput);
|
||||
|
|
|
@ -169,7 +169,7 @@ public class DecompileProcess {
|
|||
if (!getAndSetErrorDisplayed()) {
|
||||
String err = new String(nativeProcess.getErrorStream().readAllBytes());
|
||||
String errorDetail = "Decompiler executable may not be compatible with your system and may need to be rebuilt.\n" +
|
||||
"(see InstallationGuide.html, 'Building Native Components').\n\n" +
|
||||
"(see GettingStarted.md, 'Building Native Components').\n\n" +
|
||||
err;
|
||||
Msg.showError(this, null, "Failed to launch Decompiler process", errorDetail);
|
||||
}
|
||||
|
|
|
@ -191,7 +191,7 @@ public class GnuDemanglerNativeProcess {
|
|||
errorDetail = exc.getMessage();
|
||||
}
|
||||
errorDetail = "GNU Demangler executable may not be compatible with your system and may need to be rebuilt.\n" +
|
||||
"(see InstallationGuide.html, 'Building Native Components').\n\n" +
|
||||
"(see GettingStarted.md, 'Building Native Components').\n\n" +
|
||||
errorDetail;
|
||||
Msg.showError(this, null, "Failed to launch GNU Demangler process", errorDetail);
|
||||
}
|
||||
|
|
|
@ -34,7 +34,7 @@ public class OSFileNotFoundException extends FileNotFoundException {
|
|||
* @param fileName The file name associated with this exception, from the given module
|
||||
*/
|
||||
public OSFileNotFoundException(Platform platform, String moduleName, String fileName) {
|
||||
super(String.format("%sos/%s/%s does not exist (see InstallationGuide.html, 'Building Native Components')", moduleName != null ? moduleName + "/" : "",
|
||||
super(String.format("%sos/%s/%s does not exist (see GettingStarted.md, 'Building Native Components')", moduleName != null ? moduleName + "/" : "",
|
||||
platform.getDirectoryName(), fileName));
|
||||
this.platform = platform;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue