Aleksey Berezka
Aleksey Berezka
> maybe it would make more sense to add the line only if it does not already exist? Maybe yes > do self-hosted runners share state for multiple jobs? AFAIK...
Same problem
That helped, thanks. Didn't even think I have to manually update the list to see new entries.
Have you considered auto-update when executing `xcodes list`?
> That being said, shouldn't the keys be the same regardless of your current development language? Yes, but no. In our app we support over 13 languages, and that for...
iOS 17 changed how traits are applied: trait overrides are applied only after view is already added to the view hierarchy. You are requesting view size before it's being added...
Any plans to merge this PR?
> FigmaExport already supports exporting colors from variables. See https://github.com/RedMadRobot/figma-export/pull/236 Great, missed that one. thx
@tonyarnold worked like a charm, thanx a lot 👍 ```yml - name: Run Tests id: tests env: NSUnbufferedIO: YES run: | xcodebuild test-without-building ... ```
Using this script as a workaround: ```bash #!/bin/bash # Check if a directory path is provided if [ "$#" -ne 1 ]; then echo "Usage: $0 " exit 1 fi...