mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-01-07 01:02:52 +00:00
9 lines
188 B
Bash
Executable File
9 lines
188 B
Bash
Executable File
#!/bin/bash
|
|
platforms=("iOS macOS tvOS")
|
|
if [[ -n "$1" ]]; then
|
|
platforms=("$1")
|
|
fi
|
|
for platform in $platforms; do
|
|
bundle exec fastlane --env secret,$platform asc_screenshots
|
|
done
|