args, not options

This commit is contained in:
David Baker 2020-03-06 14:38:13 +00:00
parent 6e8f8dcdce
commit f961513212

View file

@ -11,8 +11,8 @@ function computeSignToolArgs(options, keyContainer, inputFile) {
} }
// We simplify and just specify the certificate subject name for our purposes // We simplify and just specify the certificate subject name for our purposes
options.push('/n', options.certificateSubjectName); args.push('/n', options.certificateSubjectName);
options.push('/kc', keyContainer); args.push('/kc', keyContainer);
if (options.hash !== "sha1") { if (options.hash !== "sha1") {
args.push("/fd", options.hash) args.push("/fd", options.hash)