From 49f9e5bef6c4db7aa7867efe63e946108f610757 Mon Sep 17 00:00:00 2001 From: Robert Holt Date: Wed, 1 Jul 2020 09:37:56 -0700 Subject: [PATCH 1/3] Fix quoting of banner for global tool --- src/session.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/session.ts b/src/session.ts index dad8410194..bdd34f703f 100644 --- a/src/session.ts +++ b/src/session.ts @@ -196,7 +196,7 @@ export class SessionManager implements Middleware { } else { const startupBanner = `=====> ${this.HostName} Integrated Console v${this.HostVersion} <===== `; - this.editorServicesArgs += `-StartupBanner "${startupBanner}" `; + this.editorServicesArgs += `-StartupBanner '${startupBanner}' `; } if (this.sessionSettings.developer.editorServicesWaitForDebugger) { From f6dca6929f73d04eed55e884b6a494d7a7ea6f16 Mon Sep 17 00:00:00 2001 From: Robert Holt Date: Wed, 1 Jul 2020 10:32:18 -0700 Subject: [PATCH 2/3] Stop install script from failing build --- .vsts-ci/templates/ci-general.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.vsts-ci/templates/ci-general.yml b/.vsts-ci/templates/ci-general.yml index c3b24a7397..a6e4931b9a 100644 --- a/.vsts-ci/templates/ci-general.yml +++ b/.vsts-ci/templates/ci-general.yml @@ -11,6 +11,9 @@ steps: # Using `prependpath` to update the PATH just for this build. Write-Host "##vso[task.prependpath]$powerShellPath" + + # Force override of unimportant errors in the install script + exit 0 displayName: Install PowerShell Daily - pwsh: '$PSVersionTable' displayName: Display PowerShell version information From 1e2825a79be54b72ec5c0f600b26126b12124ff2 Mon Sep 17 00:00:00 2001 From: Robert Holt Date: Wed, 1 Jul 2020 12:45:19 -0700 Subject: [PATCH 3/3] Remove install script change --- .vsts-ci/templates/ci-general.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.vsts-ci/templates/ci-general.yml b/.vsts-ci/templates/ci-general.yml index a6e4931b9a..c3b24a7397 100644 --- a/.vsts-ci/templates/ci-general.yml +++ b/.vsts-ci/templates/ci-general.yml @@ -11,9 +11,6 @@ steps: # Using `prependpath` to update the PATH just for this build. Write-Host "##vso[task.prependpath]$powerShellPath" - - # Force override of unimportant errors in the install script - exit 0 displayName: Install PowerShell Daily - pwsh: '$PSVersionTable' displayName: Display PowerShell version information