Skip to content

Commit 8732a56

Browse files
Added script to install dependencies like xmloutput plugin
1 parent bfda2ba commit 8732a56

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

.install_dependencies.sh

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#/usr/bin/env sh
2+
3+
bazaar_plugins_path=`bzr --version | awk '/bzrlib:/ {print $2}'`
4+
5+
cd "$bazaar_plugins_path/plugins"
6+
7+
sudo bzr branch lp:bzr-xmloutput
8+
9+
sudo mv bzr-xmloutput xmloutput
10+
11+
cd xmloutput
12+
13+
python setup.py build_ext -i

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
language: ruby
2-
install: gem install posix-spawn
2+
install:
3+
- gem install posix-spawn
4+
- sh .install_dependencies.sh

0 commit comments

Comments
 (0)