Skip to content

Commit

Permalink
Merge branch 'main' into release/stable
Browse files Browse the repository at this point in the history
  • Loading branch information
tyaginidhi committed Oct 21, 2024
2 parents 1121695 + 6e9e863 commit 33e3404
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
# Change Log - Power Platform Extension

## 2.0.64
## 2.0.74
- pac CLI 1.35.1, (September 2024 refresh, see release notes on [nuget.org](https://www.nuget.org/packages/Microsoft.PowerApps.CLI/))
- Bug Fixes
- Copilot for Power Pages: "Not yet available in your region." [Issue #1046](https://github.com/microsoft/powerplatform-vscode/issues/1046) [Fix #1044](https://github.com/microsoft/powerplatform-vscode/pull/1044)
- Power Pages generator installation issue [Issue #1018](https://github.com/microsoft/powerplatform-vscode/issues/1018) [Fix #1049](https://github.com/microsoft/powerplatform-vscode/pull/1049)

## 2.0.66
- pac CLI 1.34.4, (August 2024 refresh, see release notes on [nuget.org](https://www.nuget.org/packages/Microsoft.PowerApps.CLI/))
- Power Pages Chat participant release in GitHub Copilot Chat for Visual Studio Code
- Web extension updates
- Bug Fixes
- Dual authentication on Web extension

## 2.0.62
## 2.0.63
- pac CLI 1.33.5, (July 2024 refresh, see release notes on [nuget.org](https://www.nuget.org/packages/Microsoft.PowerApps.CLI/))
- Bug Fixes
- HTML/YML server crash issue
Expand Down
3 changes: 1 addition & 2 deletions src/client/lib/GeneratorAcquisition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export class GeneratorAcquisition implements IDisposable {
}

private npm(args: string[]) {
return spawnSync(/^win/.test(process.platform) ? 'npm.cmd' : 'npm', args, { cwd: this._ppagesGlobalPath });
return spawnSync(this.npmCommand, args, { cwd: this._ppagesGlobalPath, shell: true });
}

public ensureInstalled(): string | null {
Expand Down Expand Up @@ -141,4 +141,3 @@ export class GeneratorAcquisition implements IDisposable {
}
}
}

0 comments on commit 33e3404

Please sign in to comment.