Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/build/azure-pipelines/common/sign-win32.ts
3520 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
import { main } from './sign';
7
import path from 'path';
8
9
main([
10
process.env['EsrpCliDllPath']!,
11
'sign-windows',
12
path.dirname(process.argv[2]),
13
path.basename(process.argv[2])
14
]);
15
16