Skip to content

Commit 7761fdf

Browse files
committed
Codesign pwsh modules
1 parent acecc75 commit 7761fdf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/azure-pipelines/win32/codesign.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ async function main() {
1919
// 2. Codesign Powershell scripts
2020
// 3. Codesign context menu appx package (insiders only)
2121
const codesignTask1 = spawnCodesignProcess(esrpCliDLLPath, 'sign-windows', codeSigningFolderPath, '*.dll,*.exe,*.node');
22-
const codesignTask2 = spawnCodesignProcess(esrpCliDLLPath, 'sign-windows-appx', codeSigningFolderPath, '*.ps1');
22+
const codesignTask2 = spawnCodesignProcess(esrpCliDLLPath, 'sign-windows-appx', codeSigningFolderPath, '*.ps1,*.psm1');
2323
const codesignTask3 = process.env['VSCODE_QUALITY'] === 'insider'
2424
? spawnCodesignProcess(esrpCliDLLPath, 'sign-windows-appx', codeSigningFolderPath, '*.appx')
2525
: undefined;

0 commit comments

Comments
 (0)