Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ $filesForWindowsPackage = @(
'RunCommandOnSet.dsc.resource.json',
'RunCommandOnSet.exe',
'sshdconfig.exe',
'sshdconfig.dsc.resource.json',
'sshd-windows.dsc.resource.json',
'sshd_config.dsc.resource.json',
'windowspowershell.dsc.resource.json',
'wmi.dsc.resource.json',
'wmi.resource.ps1',
Expand All @@ -87,7 +88,7 @@ $filesForLinuxPackage = @(
'RunCommandOnSet.dsc.resource.json',
'runcommandonset',
'sshdconfig',
'sshdconfig.dsc.resource.json'
'sshd_config.dsc.resource.json'
)

$filesForMacPackage = @(
Expand All @@ -109,7 +110,7 @@ $filesForMacPackage = @(
'RunCommandOnSet.dsc.resource.json',
'runcommandonset',
'sshdconfig',
'sshdconfig.dsc.resource.json'
'sshd_config.dsc.resource.json'
)

# the list of files other than the binaries which need to be executable
Expand Down Expand Up @@ -173,7 +174,7 @@ if ($null -ne $packageType) {

& $rustup default stable

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