Skip to content

Commit

Permalink
chore: add --verbose flag to pod install (#7994)
Browse files Browse the repository at this point in the history
chore: add --verbose flag to LLM pod install
  • Loading branch information
themooneer authored Oct 8, 2024
1 parent 51e227e commit 67ed92a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/tough-owls-grin.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"live-mobile": patch
---

In order to easily monitor and debug futur ios build failures on the CI , we need to add --verbose in the pod install process.
2 changes: 1 addition & 1 deletion apps/ledger-live-mobile/scripts/post.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ BRAZE_CUSTOM_ENDPOINT="sdk.fra-02.braze.eu"`;
if (os.platform() === "darwin" && !process.env["SKIP_BUNDLE_CHECK"] && !hashesAreEquals) {
cd("ios");
try {
await $`bundle exec pod install --deployment --repo-update`;
await $`bundle exec pod install --deployment --repo-update --verbose`;
try {
runHashChecks(true);
} catch (error) {
Expand Down

0 comments on commit 67ed92a

Please sign in to comment.