Lines Matching refs:cmd
27 cmd = ['python3', options.sign_hap_py_path]
28 cmd.extend(['--hapsigner', options.hapsigner])
29 cmd.extend(['--sign-algo', options.sign_algo])
30 cmd.extend(['--keyalias', options.keyalias])
31 cmd.extend(['--inFile', unsigned_hap_path])
32 cmd.extend(['--outFile', signed_hap_path])
33 cmd.extend(['--profileFile', options.certificate_profile])
34 cmd.extend(['--keystoreFile', options.keystore_path])
35 cmd.extend(['--keystorePwd', options.keystorepasswd])
36 cmd.extend(['--keyPwd', options.private_key_path])
37 cmd.extend(['--certificate-file', options.certificate_file])
38 cmd.extend(['--profileSigned', '1'])
39 cmd.extend(['--inForm', 'zip'])
40 cmd.extend(['--compatible_version', options.sign_compatible_version])
41 child = subprocess.Popen(cmd,
102 cmd = [options.nodejs_path, options.js2abc_js, '--bc-version']
103 return build_utils.check_output(cmd).strip('\n')