Skip to content

Commit 6c41f8b

Browse files
committed
fix order of package files to be alphabetical
1 parent 981192a commit 6c41f8b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

build.ps1

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ if ($GetPackageVersion) {
3030

3131
$filesForWindowsPackage = @(
3232
'dsc.exe',
33+
'dsc_default.settings.json',
34+
'dsc.settings.json',
3335
'dscecho.exe',
3436
'echo.dsc.resource.json',
3537
'assertion.dsc.resource.json',
@@ -50,12 +52,12 @@ $filesForWindowsPackage = @(
5052
'wmi.resource.ps1',
5153
'windows_baseline.dsc.yaml',
5254
'windows_inventory.dsc.yaml'
53-
'dsc_default.settings.json',
54-
'dsc.settings.json'
5555
)
5656

5757
$filesForLinuxPackage = @(
5858
'dsc',
59+
'dsc_default.settings.json',
60+
'dsc.settings.json'
5961
'dscecho',
6062
'echo.dsc.resource.json',
6163
'assertion.dsc.resource.json',
@@ -68,13 +70,13 @@ $filesForLinuxPackage = @(
6870
'powershell.dsc.resource.json',
6971
'psDscAdapter/',
7072
'RunCommandOnSet.dsc.resource.json',
71-
'runcommandonset',
72-
'dsc_default.settings.json',
73-
'dsc.settings.json'
73+
'runcommandonset'
7474
)
7575

7676
$filesForMacPackage = @(
7777
'dsc',
78+
'dsc_default.settings.json',
79+
'dsc.settings.json'
7880
'dscecho',
7981
'echo.dsc.resource.json',
8082
'assertion.dsc.resource.json',
@@ -87,9 +89,7 @@ $filesForMacPackage = @(
8789
'powershell.dsc.resource.json',
8890
'psDscAdapter/',
8991
'RunCommandOnSet.dsc.resource.json',
90-
'runcommandonset',
91-
'dsc_default.settings.json',
92-
'dsc.settings.json'
92+
'runcommandonset'
9393
)
9494

9595
# the list of files other than the binaries which need to be executable

0 commit comments

Comments
 (0)