Skip to content

Commit

Permalink
remove tunnelApplicationConfig and handle in cli in release/1.73 (#16…
Browse files Browse the repository at this point in the history
…5060)

* remove tunnelApplicationConfig and handle in cli

* update distro
  • Loading branch information
aeschli committed Oct 31, 2022
1 parent dd1e484 commit d57c199
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "code-oss-dev",
"version": "1.73.0",
"distro": "51e5bb745ed01b333d96df102d750c9ec33ffe23",
"distro": "260d19b7c552f2b72fcee3ca844539fdabf09fbc",
"author": {
"name": "Microsoft Corporation"
},
Expand Down
2 changes: 1 addition & 1 deletion src/vs/code/node/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export async function main(argv: string[]): Promise<any> {
}

if (args.tunnel) {
if (!product.tunnelApplicationName) {
if (!product.tunnelApplicationName || !product.tunnelApplicationConfig) {
console.error(`'tunnel' command not supported in ${product.applicationName}`);
return;
}
Expand Down

0 comments on commit d57c199

Please sign in to comment.