mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-01-22 08:32:11 +00:00
14 lines
235 B
Bash
14 lines
235 B
Bash
|
#!/bin/bash
|
||
|
cwd=`dirname $0`
|
||
|
source $cwd/env.sh
|
||
|
cd $cwd/..
|
||
|
|
||
|
if [[ -n "$1" ]]; then
|
||
|
platforms="$1"
|
||
|
fi
|
||
|
for platform in $platforms; do
|
||
|
if ! bundle exec fastlane --env secret,$platform asc_metadata; then
|
||
|
exit 1
|
||
|
fi
|
||
|
done
|