[FIX] odoo.py setup use 8.0 instead of master

This commit is contained in:
Antony Lesuisse 2014-12-15 16:16:33 +01:00
parent 2e3ae75342
commit 00c234bc85
2 changed files with 6 additions and 8 deletions

View File

@ -14,7 +14,7 @@ a full-featured <a href="https://www.odoo.com">Open Source ERP</a> when you inst
Getting started with Odoo
-------------------------
For a standard installation please follow the <a href="https://www.odoo.com/documentation/8.0/setup.html">Setup instructions</a>
For a standard installation please follow the <a href="https://www.odoo.com/documentation/8.0/setup/install.html">Setup instructions</a>
from the documentation.
If you are a developer you may type the following command at your terminal:

12
odoo.py
View File

@ -4,7 +4,7 @@
#
# To install your odoo development environement type:
#
# wget -O- https://raw.githubusercontent.com/odoo/odoo/master/odoo.py | python
# wget -O- https://raw.githubusercontent.com/odoo/odoo/8.0/odoo.py | python
#
# The setup_* subcommands used to boostrap odoo are defined here inline and may
# only depends on the python 2.7 stdlib
@ -12,8 +12,6 @@
# The rest of subcommands are defined in odoo/cli or in <module>/cli by
# subclassing the Command object
#
# https://raw.githubusercontent.com/odoo-dev/odoo/master-odoo-cmd-fme/odoo.py
#
#----------------------------------------------------------
import os
import re
@ -89,10 +87,10 @@ def cmd_setup_git():
run('git','config','remote.odoo-dev.url','https://github.com/odoo-dev/odoo.git')
run('git','config','remote.odoo-dev.pushurl','git@github.com:odoo-dev/odoo.git')
run('git','remote','update')
# setup master branch
run('git','config','branch.master.remote','odoo')
run('git','config','branch.master.merge','refs/heads/master')
run('git','checkout','master')
# setup 8.0 branch
run('git','config','branch.8.0.remote','odoo')
run('git','config','branch.8.0.merge','refs/heads/8.0')
run('git','checkout','8.0')
else:
printf('no git repo found')