Skip to content

Commit 9e06cef

Browse files
authored
Merge branch 'main' into reference-doc-psscript
2 parents 2dc440c + 388a857 commit 9e06cef

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+4429
-1828
lines changed

.github/workflows/rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Rust
22

33
on:
44
push:
5-
branches: [ "main", "release/v3.0.0", "release/v3.1" ]
5+
branches: [ "main", "release/*" ]
66
pull_request:
7-
branches: [ "main", "release/v3.0.0", "release/v3.1" ]
7+
branches: [ "main", "release/*" ]
88
paths-ignore:
99
- "docs/**"
1010
- "*.md"

build.ps1

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,13 @@ $filesForWindowsPackage = @(
6060
'RunCommandOnSet.dsc.resource.json',
6161
'RunCommandOnSet.exe',
6262
'sshdconfig.exe',
63-
'sshdconfig.dsc.resource.json',
63+
'sshd-windows.dsc.resource.json',
64+
'sshd_config.dsc.resource.json',
6465
'windowspowershell.dsc.resource.json',
6566
'wmi.dsc.resource.json',
6667
'wmi.resource.ps1',
68+
'wmiAdapter.psd1',
69+
'wmiAdapter.psm1',
6770
'windows_baseline.dsc.yaml',
6871
'windows_inventory.dsc.yaml'
6972
)
@@ -87,7 +90,7 @@ $filesForLinuxPackage = @(
8790
'RunCommandOnSet.dsc.resource.json',
8891
'runcommandonset',
8992
'sshdconfig',
90-
'sshdconfig.dsc.resource.json'
93+
'sshd_config.dsc.resource.json'
9194
)
9295

9396
$filesForMacPackage = @(
@@ -109,7 +112,7 @@ $filesForMacPackage = @(
109112
'RunCommandOnSet.dsc.resource.json',
110113
'runcommandonset',
111114
'sshdconfig',
112-
'sshdconfig.dsc.resource.json'
115+
'sshd_config.dsc.resource.json'
113116
)
114117

115118
# the list of files other than the binaries which need to be executable
@@ -173,7 +176,7 @@ if ($null -ne $packageType) {
173176

174177
& $rustup default stable
175178

176-
## Test if Node is installed
179+
## Test if Node is installed
177180
## Skipping upgrade as users may have a specific version they want to use
178181
if (!(Get-Command 'node' -ErrorAction Ignore)) {
179182
Write-Verbose -Verbose "Node.js not found, installing..."

0 commit comments

Comments
 (0)