forked from forcedotcom/SalesforceMobileSDK-ReactNative
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetversion.sh
More file actions
executable file
·81 lines (67 loc) · 1.93 KB
/
Copy pathsetversion.sh
File metadata and controls
executable file
·81 lines (67 loc) · 1.93 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/bin/bash
#set -x
OPT_VERSION=""
RED='\033[0;31m'
YELLOW='\033[0;33m'
NC='\033[0m' # No Color
usage ()
{
echo "Use this script to set Mobile SDK version number in source files"
echo "Usage: $0 -v <version> [-d <isDev>]"
echo " where: version is the version e.g. 7.1.0"
echo " isDev is yes or no (default) to indicate whether it is a dev build"
}
parse_opts ()
{
while getopts v:d: command_line_opt
do
case ${command_line_opt} in
v) OPT_VERSION=${OPTARG};;
d) OPT_IS_DEV=${OPTARG};;
esac
done
if [ "${OPT_VERSION}" == "" ]
then
echo -e "${RED}You must specify a value for the version.${NC}"
usage
exit 1
fi
}
# Helper functions
update_package_json ()
{
local file=$1
local version=$2
local sdkTag=$3
gsed -i "s/\"version\":.*\"[^\"]*\"/\"version\": \"${version}\"/g" ${file}
gsed -i "s/\(SalesforceMobileSDK.*\)\#[^\"]*\"/\1\#${sdkTag}\"/g" ${file}
}
update_podspec ()
{
local file=$1
local version=$2
gsed -i "s/s\.version.*=.*$/s.version = \"${version}\"/g" ${file}
}
parse_opts "$@"
SDK_TAG=""
if [ "$OPT_IS_DEV" == "yes" ]
then
SDK_TAG="dev"
else
SDK_TAG="v${OPT_VERSION}"
fi
echo -e "${YELLOW}*** POINTING TO SDK TAG ${SDK_TAG} ***${NC}"
echo "*** Updating package.json ***"
update_package_json "./package.json" "${OPT_VERSION}" "${SDK_TAG}"
update_package_json "./iosTests/package.json" "${OPT_VERSION}" "${SDK_TAG}"
update_package_json "./androidTests/package.json" "${OPT_VERSION}" "${SDK_TAG}"
echo "*** Updating podspecs ***"
update_podspec "./SalesforceReact.podspec" "${OPT_VERSION}"
echo "*** Updating dist ***"
npm install
npm run build
echo "*** Updating Android codegen ***"
rm -rf android/generated/source/codegen
npx react-native codegen --path . --outputPath . --platform android
mv android/app/build/generated/source/codegen android/generated/source/codegen
rm -rf android/app