mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-02-15 20:32:07 +00:00
8 lines
182 B
Bash
8 lines
182 B
Bash
|
#!/bin/sh
|
||
|
if [[ -z "$1" ]]; then
|
||
|
echo "Platform required"
|
||
|
exit 1
|
||
|
fi
|
||
|
platform=$1
|
||
|
bundle exec fastlane match development --env $platform,secret --force_for_new_devices --force
|