Skip to content

Commit 91dd4ae

Browse files
committed
fix copy paths
1 parent 9bde0b9 commit 91dd4ae

File tree

1 file changed

+28
-7
lines changed

1 file changed

+28
-7
lines changed

Modules/CIPPCore/build.psd1

Lines changed: 28 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,34 @@
33
OutputDirectory = '../../Output'
44
VersionedOutputDirectory = $false
55
CopyPaths = @(
6-
'Public\OrganizationManagementRoles.json'
7-
'Public\PermissionsTranslator.json'
8-
'Public\blank.json'
9-
'Public\AdditionalPermissions.json'
10-
'Public\ConversionTable.csv'
11-
'Public\SAMManifest.json'
12-
'lib\NCrontab.Advanced.dll'
6+
@{
7+
Source = 'Public\OrganizationManagementRoles.json'
8+
Destination = 'Public'
9+
}
10+
@{
11+
Source = 'Public\PermissionsTranslator.json'
12+
Destination = 'Public'
13+
}
14+
@{
15+
Source = 'Public\blank.json'
16+
Destination = 'Public'
17+
}
18+
@{
19+
Source = 'Public\AdditionalPermissions.json'
20+
Destination = 'Public'
21+
}
22+
@{
23+
Source = 'Public\ConversionTable.csv'
24+
Destination = 'Public'
25+
}
26+
@{
27+
Source = 'Public\SAMManifest.json'
28+
Destination = 'Public'
29+
}
30+
@{
31+
Source = 'lib\NCrontab.Advanced.dll'
32+
Destination = 'lib'
33+
}
1334
)
1435
Encoding = 'UTF8'
1536
Prefix = $null

0 commit comments

Comments
 (0)