We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fac0346 commit fbc2198Copy full SHA for fbc2198
install-dev-dependencies.sh
@@ -3,7 +3,7 @@
3
# HTTPS Everywhere
4
set -o errexit -o xtrace
5
if type apt-get >/dev/null ; then
6
- sudo apt-get install libxml2-dev libxslt1-dev python-dev \
+ sudo apt-get install libxml2-dev libxml2-utils libxslt1-dev python-dev \
7
firefox chromium-browser zip sqlite3
8
elif type brew >/dev/null ; then
9
brew install python libxml2 gnu-sed
@@ -12,6 +12,9 @@ elif type brew >/dev/null ; then
12
fi
13
14
pip install --user -r requirements.txt
15
+# Get the addon SDK submodule
16
+git submodule init
17
+git submodule update
18
19
# Install a hook to run tests before pushing.
20
ln -sf ../../test.sh .git/hooks/pre-push
0 commit comments