Skip to content

Commit c957a12

Browse files
authored
tunnel command does not start: unnecessary whitespace (microsoft#167158)
tunnel command does not start
1 parent 1314c51 commit c957a12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/platform/remoteTunnel/electron-browser/remoteTunnelService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export class RemoteTunnelService extends Disposable implements IRemoteTunnelServ
128128
// bin = /usr/share/code-insiders/bin
129129
binParentLocation = dirname(dirname(this.environmentService.appRoot));
130130
}
131-
this._tunnelCommand = join(binParentLocation, 'bin', `${this.productService.tunnelApplicationName}${isWindows ? '.exe' : ''} `);
131+
this._tunnelCommand = join(binParentLocation, 'bin', `${this.productService.tunnelApplicationName}${isWindows ? '.exe' : ''}`);
132132
}
133133
return this._tunnelCommand;
134134
}

0 commit comments

Comments
 (0)