projects
/
fusionforge
/
fusionforge.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
54af5ea2f9e8decf485ecd04b212033aa72a9712
[fusionforge/fusionforge.git]
/
tools
/
VM-scripts
/
update.sh
1
#! /bin/sh
2
3
aptitude update
4
aptitude dist-upgrade
5
6
# Make sure to add tools needed for build.sh
7
aptitude bzr install mini-dinstall devscripts dpatch sharutils docbook-to-man
8
9
set -e
10
11
cd /root/fusionforge
12
13
if [ -d .bzr/ ] ; then
14
bzr update
15
else
16
git pull
17
fi
18
19