-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Fix install vsix. #3251
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix install vsix. #3251
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think async function installVsix(vsixLocation: string, updateChannel: string): Promise<void>
should be function installVsix(vsixLocation: string, updateChannel: string): Promise<void>
Yeah, I think whoever added the async might have been confused by the linter which shows "This maybe be converted to an async function" when the async is removed -- the Quick Fix code action for that converts the .then to an await. |
Fix for #3206 .
Also, fixed some minor issues with #3221 .