-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#200207
- Loading branch information
Showing
5 changed files
with
33 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
include ':TestClient', ':xplatcppsdk' | ||
include ':TestClient', ':xplatcppsdk', ':app' |
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
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
|
||
#echo ========= Setting Git Submodules to specific commits (BEGIN) ========= | ||
if [ ".git" ] | ||
then | ||
git submodule update --init --recursive | ||
else | ||
git init | ||
git submodule add https://github.com/open-source-parsers/jsoncpp.git ./external/jsoncpp | ||
if [ $? != 0 ] | ||
then | ||
exit $? | ||
fi | ||
fi | ||
|
||
pushd "external/jsoncpp" | ||
git checkout 2baad4923e6d9a7e09982cfa4b1c5fd0b67ebd87 | ||
git reset --hard 2baad4923e6d9a7e09982cfa4b1c5fd0b67ebd87 | ||
if [ $? != 0 ] | ||
then | ||
exit $? | ||
fi | ||
popd | ||
|
||
#echo ========= Setting Git Submodules to specific commits (END) ========= |