diff --git a/lib/services/platform-service.ts b/lib/services/platform-service.ts index 1607ba1710..e04ca66f40 100644 --- a/lib/services/platform-service.ts +++ b/lib/services/platform-service.ts @@ -531,7 +531,7 @@ export class PlatformService implements IPlatformService { private getDeviceBuildInfoFilePath(device: Mobile.IDevice): string { let deviceAppData = this.$deviceAppDataFactory.create(this.$projectData.projectId, device.deviceInfo.platform, device); let deviceRootPath = path.dirname(deviceAppData.deviceProjectRootPath); - return path.join(deviceRootPath, buildInfoFileName); + return helpers.fromWindowsRelativePathToUnix(path.join(deviceRootPath, buildInfoFileName)); } private getDeviceBuildInfo(device: Mobile.IDevice): IFuture {