Skip to content

Commit 8707609

Browse files
committed
[FIX] getting_started: invalid addons-path
The "../technical-training-sandbox" is added too early in the path since its still empty, and results into an "invalid addons-path" error. Part-of: #6607
1 parent e413418 commit 8707609

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

content/developer/tutorials/getting_started/02_setup.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ interface of the server.
7474
.. code-block:: console
7575
7676
$ cd $HOME/src/odoo/
77-
$ ./odoo-bin --addons-path="addons/,../enterprise/,../technical-training-sandbox" -d rd-demo
77+
$ ./odoo-bin --addons-path="addons/,../enterprise/" -d rd-demo
7878
7979
There are multiple :ref:`command-line arguments <reference/cmdline/server>` that you can use to run
8080
the server. In this training you will only need some of them.
@@ -118,6 +118,10 @@ the server. In this training you will only need some of them.
118118
- :option:`-u <odoo-bin --update>`: Update some modules before running the server
119119
(comma-separated list).
120120

121+
.. note::
122+
For now you cannot add `../technical-training-sandbox` to your `addons-path` as it is empty
123+
and will result into an invalid addons-path folder error, but you will have to add it back later on !
124+
121125
Log in to Odoo
122126
--------------
123127

0 commit comments

Comments
 (0)