We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73b5dc9 commit d8a8cdfCopy full SHA for d8a8cdf
lib/services/platform-service.ts
@@ -298,7 +298,7 @@ export class PlatformService implements IPlatformService {
298
public addLibrary(platform: string, libraryPath: string): IFuture<void> {
299
return (() => {
300
if (!this.$fs.exists(libraryPath).wait()) {
301
- this.$errors.fail("The path %s does not exist", libraryPath);
+ this.$errors.failWithoutHelp("The path %s does not exist", libraryPath);
302
} else {
303
var platformData = this.$platformsData.getPlatformData(platform);
304
platformData.platformProjectService.addLibrary(platformData, libraryPath).wait();
0 commit comments