From 3f2a4d6d2419020f007e68081109652fc353e3b0 Mon Sep 17 00:00:00 2001 From: Eric Bouchut Date: Thu, 18 Jul 2024 10:25:57 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20Debug:=20Display=20gem=20env.=20?= =?UTF-8?q?and=20installed=20gems?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/add_identifiers.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/add_identifiers.yml b/.github/workflows/add_identifiers.yml index 86798a403..5e89a99a3 100644 --- a/.github/workflows/add_identifiers.yml +++ b/.github/workflows/add_identifiers.yml @@ -21,7 +21,16 @@ jobs: # Checks-out the repo - name: Checkout Repo uses: actions/checkout@v4 - + + - name: Troubleshooting terminal-table + run: | + for gem in $(which -a gem); do + echo "\n----\n" + "$gem" env + echo + ls -F $($gem env gemdir)/gems + done + # Patch Fastlane Match to not print tables - name: Patch Match Tables run: |