Skip to content

Commit

Permalink
Disable "Print bundled runtimes" shell script
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrubin committed Aug 19, 2024
1 parent 2f5d43c commit fb774ab
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/actions/prepare-simulator/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@ outputs:
runs:
using: composite
steps:
- name: "Print bundled runtimes"
shell: bash
run: |
echo "::group::Bundled runtimes:"
for xcode in /Applications/Xcode*.app; do \
echo $xcode | grep -o "Xcode.*\.app"; \
for plist in $xcode/Contents/Developer/Platforms/*.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/*.simruntime/Contents/Info.plist; do \
defaults read $plist CFBundleName; \
done; \
echo ""; \
done
echo "::endgroup::"
# - name: "Print bundled runtimes"
# shell: bash
# run: |
# echo "::group::Bundled runtimes:"
# for xcode in /Applications/Xcode*.app; do \
# echo $xcode | grep -o "Xcode.*\.app"; \
# for plist in $xcode/Contents/Developer/Platforms/*.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/*.simruntime/Contents/Info.plist; do \
# defaults read $plist CFBundleName; \
# done; \
# echo ""; \
# done
# echo "::endgroup::"

- name: "Install runtime"
shell: bash
Expand Down

0 comments on commit fb774ab

Please sign in to comment.