From 67ed92a8d63f6baa636e7522ae0d93b0a9ddacb4 Mon Sep 17 00:00:00 2001 From: Mounir Hamzaoui Date: Tue, 8 Oct 2024 08:19:08 +0200 Subject: [PATCH] chore: add --verbose flag to pod install (#7994) chore: add --verbose flag to LLM pod install --- .changeset/tough-owls-grin.md | 5 +++++ apps/ledger-live-mobile/scripts/post.mjs | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/tough-owls-grin.md diff --git a/.changeset/tough-owls-grin.md b/.changeset/tough-owls-grin.md new file mode 100644 index 000000000000..b61d79bc99de --- /dev/null +++ b/.changeset/tough-owls-grin.md @@ -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. diff --git a/apps/ledger-live-mobile/scripts/post.mjs b/apps/ledger-live-mobile/scripts/post.mjs index 10b53f92fe7f..6226c9be0c42 100644 --- a/apps/ledger-live-mobile/scripts/post.mjs +++ b/apps/ledger-live-mobile/scripts/post.mjs @@ -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) {