From a29b8ebe165676cbf3be92f5cb879876e19310e4 Mon Sep 17 00:00:00 2001 From: unknown Date: Sun, 14 Jun 2015 11:09:25 +0300 Subject: [PATCH] Report message when platform gets successfully removed --- lib/services/platform-service.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/services/platform-service.ts b/lib/services/platform-service.ts index 15483cbaf4..9729c23b89 100644 --- a/lib/services/platform-service.ts +++ b/lib/services/platform-service.ts @@ -218,6 +218,7 @@ export class PlatformService implements IPlatformService { var platformDir = path.join(this.$projectData.platformsDir, platform); this.$fs.deleteDirectory(platformDir).wait(); + this.$logger.out(`Platform ${platform} successfully removed.`); }); }).future()();