mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2024-12-24 18:32:36 +00:00
11 lines
186 B
Bash
11 lines
186 B
Bash
|
#!/bin/sh
|
||
|
if [ -z $1 ]; then
|
||
|
echo "Version number required"
|
||
|
exit 1
|
||
|
fi
|
||
|
if [ ! -z $2 ]; then
|
||
|
BUILD="build:$2"
|
||
|
fi
|
||
|
VERSION="version:$1"
|
||
|
bundle exec fastlane bump $VERSION $BUILD
|