diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2016-06-03 09:45:55 -0700 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2016-06-03 09:51:39 -0700 |
commit | 2fd673befc1de27fb3d68ab7e928f78d346e1ef6 (patch) | |
tree | ea35c7e679c0ac772aea3bf90e04fe88525e187b | |
parent | a758b41b06d21b74c52dd4e1b001eb6e1a82f913 (diff) | |
download | qtlocation-mapboxgl-2fd673befc1de27fb3d68ab7e928f78d346e1ef6.tar.gz |
[docs] Remove references to manual submodule initialization
-rw-r--r-- | platform/android/CONTRIBUTING_LINUX.md | 4 | ||||
-rw-r--r-- | platform/ios/DEVELOPING.md | 7 | ||||
-rw-r--r-- | platform/node/README.md | 4 |
3 files changed, 3 insertions, 12 deletions
diff --git a/platform/android/CONTRIBUTING_LINUX.md b/platform/android/CONTRIBUTING_LINUX.md index d4b5200878..875f7a800a 100644 --- a/platform/android/CONTRIBUTING_LINUX.md +++ b/platform/android/CONTRIBUTING_LINUX.md @@ -32,13 +32,11 @@ gradle will take the value of the `MAPBOX_ACCESS_TOKEN` environ variable and sav ## Building -Checking out the code and initializing the git submodules: +Checking out the code: ``` $ git clone https://github.com/mapbox/mapbox-gl-native.git $ cd mapbox-gl-native -$ git submodule init -$ git submodule update ``` Building a debug version will generated a self-signed test application that can be installed on the phone or emulator: diff --git a/platform/ios/DEVELOPING.md b/platform/ios/DEVELOPING.md index 21864e534d..67481d4f8a 100644 --- a/platform/ios/DEVELOPING.md +++ b/platform/ios/DEVELOPING.md @@ -81,13 +81,6 @@ To add or update text that the user may see in the iOS SDK: `make test-ios` builds and runs unit tests of cross-platform code as well as the SDK. -Before you can run UI tests of the SDK, check out KIF and OHHTTPStubs via Git submodules: - -```bash -git submodule init -git submodule update -``` - Before you can run unit tests of the cross-platform code on the command line, install ios-sim version 3.2.0 (not any other version): ```bash diff --git a/platform/node/README.md b/platform/node/README.md index d446b9895f..f8be0d45a4 100644 --- a/platform/node/README.md +++ b/platform/node/README.md @@ -11,13 +11,13 @@ By default, installs binaries. On these platforms no additional dependencies are - 64 bit OS X or 64 bit Linux - Node.js v4.x _(note: v5+ is known to have issue)_ -Just run: +Run: ``` npm install mapbox-gl-native ``` -Other platforms will fall back to a source compile with `make node`. To compile this module, make sure all submodules are initialized with `git submodule update --init` and install the [external dependencies required to build from source](https://github.com/mapbox/mapbox-gl-native/blob/node-v2.1.0/INSTALL.md#2-installing-dependencies). +Other platforms will fall back to a source compile with `make node`; see INSTALL.md in the repository root directory for prequisites. ## Testing |