Skip to content

Commit

Permalink
fix(cli): Make update from windows use proper paths on Podfile (#5906)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcesarmobile authored Sep 13, 2022
1 parent d92467f commit c41d28f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions cli/src/ios/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,8 @@ async function generatePodFile(
return '';
}

return ` pod '${p.ios.name}', :path => '${relative(
podfilePath,
await realpath(p.rootPath),
return ` pod '${p.ios.name}', :path => '${convertToUnixPath(
relative(podfilePath, await realpath(p.rootPath)),
)}'\n`;
}),
);
Expand Down

0 comments on commit c41d28f

Please sign in to comment.