Skip to content

Commit d8a8cdf

Browse files
committed
Don't show help if a third party library does not exist.
1 parent 73b5dc9 commit d8a8cdf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/platform-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ export class PlatformService implements IPlatformService {
298298
public addLibrary(platform: string, libraryPath: string): IFuture<void> {
299299
return (() => {
300300
if (!this.$fs.exists(libraryPath).wait()) {
301-
this.$errors.fail("The path %s does not exist", libraryPath);
301+
this.$errors.failWithoutHelp("The path %s does not exist", libraryPath);
302302
} else {
303303
var platformData = this.$platformsData.getPlatformData(platform);
304304
platformData.platformProjectService.addLibrary(platformData, libraryPath).wait();

0 commit comments

Comments
 (0)