mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2024-12-24 02:21:00 +00:00
11 lines
186 B
Bash
Executable File
11 lines
186 B
Bash
Executable File
#!/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
|