-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxcodebump-example.cfg
58 lines (49 loc) · 1.44 KB
/
xcodebump-example.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# .xcodebump.cfg
#
# STEmacsModelines:
# -*- Shell-Unix-Generic -*-
#
# Config file for .xcodebump script for bumping version numbers, committing and
# tagging code (in git) consistently.
#
# specify target
TARGETNAME="MyProject"
# release version start - only used if no release version is found
BUILDVER_START="1.0.0"
# build number start - only used if no build number is found
BUILDNUM_START=1
# tag prefix - a string that is prepended to the generated commit tag
#
# NOTE: The string, if not empty, will be followed by a dash (-) character when
# prepended to the generated tag. Set this to an empty string to disable.
#
TAG_PREFIX="build"
# podspec support
#
PODSPEC_URL="https://github.com/USERNAME/MyProject.git"
# PODSPEC_BRANCH_REL="master"
# PODSPEC_BRANCH_DEV="develop"
# PATHs
PATH_GIT="/usr/local/bin/git"
#PATH_CUT="/usr/bin/cut"
#PATH_CUT="/usr/bin/cut"
#PATH_HEAD="/usr/bin/head"
#PATH_FIND="/usr/bin/find"
# Install gnu grep via homebrew... (this will not symlink for you)
#
# >brew tap homebrew/dupes
# >brew install homebrew/dupes/grep
#
# This will install the new grep as "ggrep" to avoid any conflicts with the BSD
# version of grep native to OSX.
#
#PATH_GREP=/usr/local/bin/ggrep
# Install gnu sed via homebrew... (this will not symlink for you)
#
# >brew tap homebrew/dupes
# >brew install gnu-sed
#
# This will install the new sed as "gsed" to avoid any conflicts with the BSD
# version of sed native to OSX.
#
#PATH_SED="/usr/local/bin/gsed"