Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
Odoo scripts
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Container Registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
XCG
Odoo scripts
Commits
202d6f106952
Commit
202d6f106952
authored
7 years ago
by
Vincent Hatakeyama
Browse files
Options
Downloads
Patches
Plain Diff
use realpath to allow symbolic link of module groups
parent
3018214afb36
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docker_dev_start.py
+4
-3
4 additions, 3 deletions
docker_dev_start.py
with
4 additions
and
3 deletions
docker_dev_start.py
+
4
−
3
View file @
202d6f10
...
@@ -24,7 +24,7 @@
...
@@ -24,7 +24,7 @@
__version__
=
'
0.1.0
'
__version__
=
'
0.1.0
'
__date__
=
'
2017-08-11
'
__date__
=
'
2017-08-11
'
__updated__
=
'
2017-0
8-28
'
__updated__
=
'
2017-0
9-07
'
# Check the version of the "docker" package
# Check the version of the "docker" package
if
docker
.
__version__
.
split
(
'
.
'
)
<
[
2
]:
if
docker
.
__version__
.
split
(
'
.
'
)
<
[
2
]:
...
@@ -378,8 +378,9 @@
...
@@ -378,8 +378,9 @@
# volume magic
# volume magic
for
addons_dir
in
addon_dirs
:
for
addons_dir
in
addon_dirs
:
binds
.
append
(
binds
.
append
(
'
%s:/mnt/addons/%s
'
%
(
os
.
path
.
join
(
project_path
,
addons_dir
),
'
%s:/mnt/addons/%s
'
%
(
addons_dir
))
os
.
path
.
realpath
(
os
.
path
.
join
(
project_path
,
addons_dir
)),
addons_dir
))
all_addons_dir
=
[
all_addons_dir
=
[
'
/opt/odoo/sources/odoo/addons
'
,
'
/opt/odoo/sources/odoo/addons
'
,
]
]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment