Skip to content

Commit

Permalink
fix set host triplet (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
JackBoosY authored Nov 8, 2024
1 parent 8c490e2 commit fd71380
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions VERSION.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# History

## 2.2.2
Bug fixes:

- Fix set host triplet.

## 2.2.1
Bug fixes:

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"icon": "images/vcpkg-logo.png",
"publisher": "JackBoosY",
"license": "MIT",
"version": "2.2.1",
"version": "2.2.2",
"engines": {
"vscode": "^1.76.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,7 @@ export class ConfigurationManager implements vscode.Disposable
let result = await vscode.window.showQuickPick(triplets, {canPickMany: false, placeHolder: "Choose a triplet"});
if (result !== undefined)
{
this.updateVcpkgSetting(this._targetTripletConfig, result.label);
this.updateVcpkgSetting(this._hostTripletConfig, result.label);
this.logInfo('update host triplet to: ' + result.label);
vscode.window.showInformationMessage('Update host triplet to: ' + result.label);
}
Expand Down

0 comments on commit fd71380

Please sign in to comment.