Skip to content

Commit bfdba5e

Browse files
committed
Fix bug checking the wrong path if it's a symlink
1 parent 96891d5 commit bfdba5e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/doblib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "0.19.6"
1+
VERSION = "0.19.7"

src/doblib/env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ def _link_modules(self):
210210

211211
linked_modules.add(module)
212212

213-
if not os.path.islink(path):
213+
if not os.path.islink(link_path):
214214
os.symlink(path, link_path)
215215

216216
def _init_odoo(self):

0 commit comments

Comments
 (0)