File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 11import type { CancellationToken , LogOutputChannel } from "vscode" ;
22import * as z from "zod/v4-mini" ;
33
4- import { LOCALSTACK_DOCKER_IMAGE_NAME } from "../constants.ts" ;
4+ import { LOCALSTACK_DOCKER_IMAGE_NAME } from "../constants.ts" ;
55
66import { checkIsAuthenticated } from "./authenticate.ts" ;
77import { checkIsProfileConfigured } from "./configure-aws.ts" ;
@@ -49,7 +49,9 @@ async function getDockerImageSemverVersion(
4949 outputChannel : LogOutputChannel ,
5050) : Promise < string | undefined > {
5151 try {
52- const { stdout } = await exec ( `docker inspect ${ LOCALSTACK_DOCKER_IMAGE_NAME } ` ) ;
52+ const { stdout } = await exec (
53+ `docker inspect ${ LOCALSTACK_DOCKER_IMAGE_NAME } ` ,
54+ ) ;
5355 const data : unknown = JSON . parse ( stdout ) ;
5456 const parsed = InspectSchema . safeParse ( data ) ;
5557 if ( ! parsed . success ) {
You can’t perform that action at this time.
0 commit comments