-
Notifications
You must be signed in to change notification settings - Fork 61
Add newer PS Adapters to pkg #1485
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -22,6 +22,7 @@ | |||||
| "powershell.dsc.extension.json", | ||||||
| "powershell.discover.ps1", | ||||||
| "powershell.dsc.resource.json", | ||||||
| "PowerShell_adapter.dsc.resource.json", | ||||||
|
||||||
| "psDscAdapter/", | ||||||
| "psscript.ps1", | ||||||
| "psscript.dsc.resource.json", | ||||||
|
|
@@ -51,6 +52,7 @@ | |||||
| "powershell.dsc.extension.json", | ||||||
| "powershell.discover.ps1", | ||||||
| "powershell.dsc.resource.json", | ||||||
| "PowerShell_adapter.dsc.resource.json", | ||||||
|
||||||
| "psDscAdapter/", | ||||||
| "psscript.ps1", | ||||||
| "psscript.dsc.resource.json", | ||||||
|
|
@@ -83,6 +85,7 @@ | |||||
| "powershell.dsc.extension.json", | ||||||
| "powershell.discover.ps1", | ||||||
| "powershell.dsc.resource.json", | ||||||
| "PowerShell_adapter.dsc.resource.json", | ||||||
|
||||||
| "psDscAdapter/", | ||||||
| "psscript.ps1", | ||||||
| "psscript.dsc.resource.json", | ||||||
|
|
@@ -99,6 +102,7 @@ | |||||
| "sshd-subsystem.dsc.resource.json", | ||||||
| "sshd-subsystemList.dsc.resource.json", | ||||||
| "windowspowershell.dsc.resource.json", | ||||||
| "WindowsPowerShell_adapter.dsc.resource.json", | ||||||
|
||||||
| "WindowsPowerShell_adapter.dsc.resource.json", | |
| "windowspowershell_adapter.dsc.resource.json", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The newly added filenames use different casing/formatting than surrounding entries (which are largely lowercase). If the packaging/build runs on a case-sensitive filesystem (common in Linux CI or container builds), any mismatch between these strings and the actual on-disk filenames will cause file-not-found errors and missing artifacts. Recommendation: ensure these entries match the exact on-disk filenames and consider aligning naming/casing conventions with the rest of the manifest to reduce cross-platform packaging risk.