Skip to content

Commit

Permalink
do optional check
Browse files Browse the repository at this point in the history
  • Loading branch information
sandy081 committed Jun 3, 2024
1 parent 4f6b3ec commit b888537
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 @@ -1855,7 +1855,7 @@ export async function signPackage(packagePath: string, signScript: string): Prom
}
return c();
});
proc.stdout!.on('data', (data) => {
proc.stdout?.on('data', (data) => {
console.log(data.toString('utf8'));
});
});
Expand Down

0 comments on commit b888537

Please sign in to comment.