From bc0e0c4c339824f898ce0b449a4d99625b660e3b Mon Sep 17 00:00:00 2001 From: "David L. Day" Date: Sun, 3 Mar 2024 18:44:03 -0500 Subject: [PATCH] fix: update use of execa for v8 --- src/ConfigurationManager.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ConfigurationManager.ts b/src/ConfigurationManager.ts index 7ea8c28f..ef3b4f50 100644 --- a/src/ConfigurationManager.ts +++ b/src/ConfigurationManager.ts @@ -14,7 +14,7 @@ * limitations under the License. */ -import execa from "execa"; +import * as execa from "execa"; import * as glob from "glob"; import * as path from "path"; import * as portfinder from "portfinder"; @@ -493,7 +493,7 @@ export class ConfigurationManager implements Disposable { Constants.EXTENSION_OUTPUT_CHANNEL.appendLine( "Starting managed service.", ); - (this.process = execa("java", args)).catch( + (this.process = execa.execa("java", args)).catch( (err: execa.ExecaError) => { if (err.isCanceled) { Constants.EXTENSION_OUTPUT_CHANNEL.appendLine(