Skip to content

Commit

Permalink
fix: ios resign space error
Browse files Browse the repository at this point in the history
  • Loading branch information
yowpark committed Oct 12, 2023
1 parent 071e900 commit c204c96
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export class DeviceHostResignAppFileService {
await fs.promises.cp(ResignShPath, resignShellPath, { recursive: true, force: true });
await fs.promises.chmod(resignShellPath, 0o755);

const args = [resignShellPath, appPath, `"${identityName}"`, '-p', provisioningProfilePath, resignedAppPath].join(' ');
const args = [resignShellPath, `"${appPath}"`, `"${identityName}"`, '-p', provisioningProfilePath, resignedAppPath].join(' ');

this.logger.info('DeviceHostResignAppFileService.resign', { args });
const result = await ChildProcess.exec(args, {}, this.logger);
Expand Down

0 comments on commit c204c96

Please sign in to comment.