Skip to content

Commit ab1c67e

Browse files
committed
update Browser Build features to match main branch
1 parent ec86060 commit ab1c67e

File tree

5 files changed

+219
-169
lines changed

5 files changed

+219
-169
lines changed

.github/workflows/add_identifiers.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,15 @@ jobs:
2424

2525
# Patch Fastlane Match to not print tables
2626
- name: Patch Match Tables
27-
run: find /usr/local/lib/ruby/gems -name table_printer.rb | xargs sed -i "" "/puts(Terminal::Table.new(params))/d"
28-
27+
run: |
28+
TABLE_PRINTER_PATH=$(ruby -e 'puts Gem::Specification.find_by_name("fastlane").gem_dir')/match/lib/match/table_printer.rb
29+
if [ -f "$TABLE_PRINTER_PATH" ]; then
30+
sed -i "" "/puts(Terminal::Table.new(params))/d" "$TABLE_PRINTER_PATH"
31+
else
32+
echo "table_printer.rb not found"
33+
exit 1
34+
fi
35+
2936
# Install project dependencies
3037
- name: Install Project Dependencies
3138
run: bundle install

0 commit comments

Comments
 (0)