Skip to content

Commit 9a68c63

Browse files
committed
fix string formatting
1 parent 6b2f1eb commit 9a68c63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ec2/model.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ export class Ec2ConnectionManager {
178178
const ssmPlugin = await getOrInstallCli('session-manager-plugin', !isCloud9)
179179
const shellArgs = [JSON.stringify(session), selection.region, 'StartSession']
180180
const terminalOptions = {
181-
name: selection.region + '/' + selection.instanceId,
181+
name: `${selection.region}/${selection.instanceId}`,
182182
shellPath: ssmPlugin,
183183
shellArgs: shellArgs,
184184
}

0 commit comments

Comments
 (0)