From 7b5c13ece380b2dd6059a15a5bc08e664ac2b3ee Mon Sep 17 00:00:00 2001 From: "Hallvord R. M. Steen" Date: Thu, 10 Dec 2015 18:42:19 -0500 Subject: [PATCH] Include instructions for updating submodules in CONTRIBUTING.md setup instructions, #850 --- CONTRIBUTING.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f1ca53623..a7ee5307c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -206,6 +206,9 @@ We use [Grunt](http://gruntjs.com/) as a task runner to perform certain things ( git clone https://github.com//webcompat.com.git #replace your github username # change to directory cd webcompat.com +# check out submodules +git submodule init +git submodule update # initializing project [sudo] make install ``` @@ -248,6 +251,9 @@ Windows users should simply download the most recent Python 2.7 installer and ru git clone git@github.com:username/webcompat.com.git # change to directory cd webcompat.com +# check out submodules +git submodule init +git submodule update # set up virtual environment [sudo] virtualenv env source env/bin/activate