Skip to content

Commit

Permalink
fix: paths with spaces (#990)
Browse files Browse the repository at this point in the history
  • Loading branch information
sandy081 authored Jun 4, 2024
1 parent cfc734c commit 86ef072
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1854,7 +1854,7 @@ export async function signPackage(packageFile: string, signTool: string): Promis
await generateManifest(packageFile, manifestFile);

// Sign the manifest file to generate the signature file
cp.execSync(`${signTool} ${manifestFile} ${signatureFile}`, { stdio: 'inherit' });
cp.execSync(`${signTool} "${manifestFile}" "${signatureFile}"`, { stdio: 'inherit' });

// Create a signature zip file containing the manifest and signature file
return zip(manifestFile, signatureFile, signatureZip);
Expand Down

0 comments on commit 86ef072

Please sign in to comment.