Skip to content

Commit 86ef072

Browse files
authored
fix: paths with spaces (#990)
1 parent cfc734c commit 86ef072

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/package.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1854,7 +1854,7 @@ export async function signPackage(packageFile: string, signTool: string): Promis
18541854
await generateManifest(packageFile, manifestFile);
18551855

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

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

0 commit comments

Comments
 (0)