Skip to content

Commit 33e3404

Browse files
committed
Merge branch 'main' into release/stable
2 parents 1121695 + 6e9e863 commit 33e3404

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
# Change Log - Power Platform Extension
22

3-
## 2.0.64
3+
## 2.0.74
4+
- pac CLI 1.35.1, (September 2024 refresh, see release notes on [nuget.org](https://www.nuget.org/packages/Microsoft.PowerApps.CLI/))
5+
- Bug Fixes
6+
- 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)
7+
- 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)
8+
9+
## 2.0.66
410
- pac CLI 1.34.4, (August 2024 refresh, see release notes on [nuget.org](https://www.nuget.org/packages/Microsoft.PowerApps.CLI/))
511
- Power Pages Chat participant release in GitHub Copilot Chat for Visual Studio Code
612
- Web extension updates
713
- Bug Fixes
814
- Dual authentication on Web extension
915

10-
## 2.0.62
16+
## 2.0.63
1117
- pac CLI 1.33.5, (July 2024 refresh, see release notes on [nuget.org](https://www.nuget.org/packages/Microsoft.PowerApps.CLI/))
1218
- Bug Fixes
1319
- HTML/YML server crash issue

src/client/lib/GeneratorAcquisition.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export class GeneratorAcquisition implements IDisposable {
6969
}
7070

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

7575
public ensureInstalled(): string | null {
@@ -141,4 +141,3 @@ export class GeneratorAcquisition implements IDisposable {
141141
}
142142
}
143143
}
144-

0 commit comments

Comments
 (0)