mirror of
https://github.com/zhigang1992/pixate-freestyle-ios.git
synced 2026-04-29 04:35:17 +08:00
54 lines
1.6 KiB
Bash
Executable File
54 lines
1.6 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright 2014-present Pixate, Inc.
|
|
#
|
|
# This version based on the original verson by:
|
|
#
|
|
# Copyright 2010-present Facebook.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
. ${PX_FREESTYLE_SCRIPT:-$(dirname $0)}/common.sh
|
|
|
|
if [ "$#" -lt 2 ]; then
|
|
echo "Usage: $0 MAJOR MINOR [HOTFIX [BETA]]"
|
|
echo " MAJOR major version number"
|
|
echo " MINOR minor version number"
|
|
echo " HOTFIX hotfix version number"
|
|
echo " BETA 'b' if this is a beta release"
|
|
die 'Arguments do not conform to usage'
|
|
fi
|
|
|
|
cd $PX_FREESTYLE_SRC
|
|
|
|
VERSION_STRING="$1"."$2"
|
|
|
|
if [ "$3" != "" ]; then
|
|
VERSION_STRING="$VERSION_STRING"."$3"
|
|
fi
|
|
if [ "$4" != "" ]; then
|
|
# We actually append 'b' regardless of what was passed.
|
|
VERSION_STRING="$VERSION_STRING".b
|
|
fi
|
|
|
|
TAG_NAME=v"$VERSION_STRING"
|
|
|
|
git tag -a "$TAG_NAME" HEAD \
|
|
|| die 'Failed to tag HEAD. If this is a duplicate tag, please delete the old one first.'
|
|
|
|
progress_message "Tagged HEAD as $TAG_NAME"
|
|
progress_message "Be sure to use 'git push --tags' in order to push tags upstream."
|
|
|
|
common_success
|