mirror of
https://github.com/odoo/runbot.git
synced 2025-03-17 00:15:47 +07:00
10 lines
253 B
Python
10 lines
253 B
Python
![]() |
import pathlib
|
||
|
|
||
|
from odoo.tools.appdirs import user_cache_dir
|
||
|
|
||
|
|
||
|
def migrate(_cr, _version):
|
||
|
# avoid needing to re-clone our repo unnecessarily
|
||
|
pathlib.Path(user_cache_dir('forwardport')).rename(
|
||
|
pathlib.Path(user_cache_dir('mergebot')))
|