forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Had to change around the config since this is now a public repo so we can't use SSH auth. This seems to work though.
- Loading branch information
1 parent
4ddd4af
commit 3b73a0f
Showing
2 changed files
with
16 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,11 @@ | |
# of patent rights can be found in the PATENTS file in the same directory. | ||
|
||
cd ../../ | ||
git clone git://github.com/facebook/react-native.git react-native-gh-pages | ||
if [ "$TRAVIS" ]; then | ||
git clone "https://[email protected]/facebook/react-native.git" react-native-gh-pages | ||
else | ||
git clone git://github.com/facebook/react-native.git react-native-gh-pages | ||
fi | ||
cd react-native-gh-pages | ||
git checkout origin/gh-pages | ||
git checkout -b gh-pages | ||
|