Statistics
| Branch: | Tag: | Revision:

root / ci / install.sh @ f0e7fc76

History | View | Annotate | Download (358 Bytes)

1
#!/bin/sh
2

    
3
if [ -n $VIRTUAL_ENV ]; then
4
  OPTIONS=--script-dir=$VIRTUAL_ENV/bin/
5
  echo $OPTIONS
6
else
7
  OPTIONS=
8
fi
9

    
10
set -e
11
. ./ci/config
12

    
13
# Update version
14
devflow-update-version
15

    
16
#for project in $PROJECTS; do
17
#  cd $project
18
#  python setup.py develop $OPTIONS
19
#  cd -
20
# done
21

    
22
# There is a single setup.py for the time being
23
python setup.py develop $OPTIONS