Skip to content

Commit 3b277ae

Browse files
authored
Merge pull request #3 from gsandf/bugfix/allow-spaces-in-scopes
Bugfix/allow spaces in scopes
2 parents 8591832 + 33f8aa0 commit 3b277ae

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

bin/cocoapods.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if [ ! -d $ios_dir ]
99
fi
1010

1111
podfile="$ios_dir/Podfile"
12-
template=`pwd`/node_modules/react-native-oauth/ios/Podfile.template
12+
template=`pwd`/node_modules/@gsandf/react-native-oauth/ios/Podfile.template
1313

1414
echo "Checking Podfile in iOS project ($podfile)"
1515

@@ -21,7 +21,7 @@ if [ -f $podfile ]
2121

2222
if [ "$generate_env_file" != "y" ]
2323
then
24-
24+
2525
echo "Add the following pods":
2626
echo ""
2727
echo ""

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "react-native-oauth",
3-
"version": "2.1.15",
2+
"name": "@gsandf/react-native-oauth",
3+
"version": "2.1.18",
44
"author": "Ari Lerner <[email protected]> (https://fullstackreact.com)",
55
"description": "An oauth manager for dealing with the complexities of oauth",
66
"main": "./react-native-oauth.js",
@@ -32,8 +32,8 @@
3232
},
3333
"rnpm": {
3434
"commands": {
35-
"prelink": "node_modules/react-native-oauth/bin/prepare.sh",
36-
"postlink": "node_modules/react-native-oauth/bin/cocoapods.sh"
35+
"prelink": "node_modules/@gsandf/react-native-oauth/bin/prepare.sh",
36+
"postlink": "node_modules/@gsandf/react-native-oauth/bin/cocoapods.sh"
3737
},
3838
"ios": {
3939
"project": "ios/OAuthManager.xcodeproj"

0 commit comments

Comments
 (0)