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:
Kent Adrian Sato 2025-04-26 09:40:13 +08:00
parent 4a46edc9fe
commit 0a2b2b6569
No known key found for this signature in database
GPG key ID: 6954A6F44365BA5C
4 changed files with 4 additions and 4 deletions

View file

@ -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;
}