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 6import { main } from './sign'; 7import path from 'path'; 8 9main([ 10 process.env['EsrpCliDllPath']!, 11 'sign-windows', 12 path.dirname(process.argv[2]), 13 path.basename(process.argv[2]) 14]); 15 16