We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 645e9ea commit aa3de73Copy full SHA for aa3de73
lib/services/platform-environment-requirements.ts
@@ -152,9 +152,11 @@ export class PlatformEnvironmentRequirements
152
darwin: "macos",
153
} as any)[process.platform];
154
155
+ const anchor = platform ? `#${os}-${platform.toLowerCase()}` : ''
156
+
157
return (
158
`Verify that your environment is configured according to the system requirements described at\n` +
- `https://docs.nativescript.org/environment-setup.html#${os}-${platform.toLowerCase()}.`
159
+ `https://docs.nativescript.org/environment-setup.html${anchor}.`
160
);
161
}
162
0 commit comments