From f526fa8438b0a29d2d6a0bfdd5e973a851124aab Mon Sep 17 00:00:00 2001 From: Dustin Campbell Date: Tue, 15 Nov 2016 10:59:20 -0800 Subject: [PATCH 1/2] Print current platform and RID during download --- src/main.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/main.ts b/src/main.ts index d84821c05..d7d5937a1 100644 --- a/src/main.ts +++ b/src/main.ts @@ -83,6 +83,16 @@ function installRuntimeDependencies(extension: vscode.Extension, logger: Lo packageManager = new PackageManager(info, extension.packageJSON); logger.appendLine(); + // Displa y platform information and RID followed by a blank line + logger.append(`Platform: ${info.toString()}`); + if (info.runtimeId) { + logger.appendLine(` (${info.runtimeId})`); + } + else { + logger.appendLine(); + } + logger.appendLine(); + installationStage = 'downloadPackages'; const config = vscode.workspace.getConfiguration(); From 6c63c706268c7bd79fedce409e0df523326e0f42 Mon Sep 17 00:00:00 2001 From: Dustin Campbell Date: Tue, 15 Nov 2016 11:10:35 -0800 Subject: [PATCH 2/2] Fix embarassing typo --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index d7d5937a1..a371f152b 100644 --- a/src/main.ts +++ b/src/main.ts @@ -83,7 +83,7 @@ function installRuntimeDependencies(extension: vscode.Extension, logger: Lo packageManager = new PackageManager(info, extension.packageJSON); logger.appendLine(); - // Displa y platform information and RID followed by a blank line + // Display platform information and RID followed by a blank line logger.append(`Platform: ${info.toString()}`); if (info.runtimeId) { logger.appendLine(` (${info.runtimeId})`);