-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxcode-build-bump.sh
More file actions
executable file
·19 lines (16 loc) · 1.07 KB
/
xcode-build-bump.sh
File metadata and controls
executable file
·19 lines (16 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
###############################################################################
# #
# Bump the app build version #
# #
# @version: 1.0.0 #
# @author: Steiner Patrick <patrick.steiner@mopius.com> #
# @date: 29.05.2015 11:46 #
# License: BSD #
# #
###############################################################################
PROJECT_DIR="NearspeakKit"
INFOPLIST_FILE="Info.plist"
buildNumber=$(/usr/libexec/PlistBuddy -c "Print CFBundleVersion" "${PROJECT_DIR}/${INFOPLIST_FILE}")
buildNumber=$(($buildNumber + 1))
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion $buildNumber" "${PROJECT_DIR}/${INFOPLIST_FILE}"