Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/cli/src/tools/installPods.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ async function installPods({
try {
loader.start(
`Updating CocoaPods repositories ${chalk.dim(
'(this make take a few minutes)',
'(this may take a few minutes)',
)}`,
);
await execa('pod', ['repo', 'update']);
Expand All @@ -102,7 +102,7 @@ async function installPods({
loader.succeed();
loader.start(
`Installing CocoaPods dependencies ${chalk.dim(
'(this make take a few minutes)',
'(this may take a few minutes)',
)}`,
);
await execa('pod', ['install']);
Expand Down