mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-02-15 12:22:06 +00:00
8 lines
182 B
Bash
Executable File
8 lines
182 B
Bash
Executable File
#!/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
|