From c204c961080fed3794437188b6205d4e52e61ce3 Mon Sep 17 00:00:00 2001 From: Byoungwook Park Date: Thu, 12 Oct 2023 18:54:07 +0900 Subject: [PATCH] fix: ios resign space error --- .../src/device-host/device-host.resign-app-file.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/typescript-private/device-server/src/device-host/device-host.resign-app-file.ts b/packages/typescript-private/device-server/src/device-host/device-host.resign-app-file.ts index 387c6938d..681471fbf 100644 --- a/packages/typescript-private/device-server/src/device-host/device-host.resign-app-file.ts +++ b/packages/typescript-private/device-server/src/device-host/device-host.resign-app-file.ts @@ -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);