[FIX] config: remove image_db from configuration path
- Add format code in release
This commit is contained in:
parent
594de37fa5
commit
1fdad0ee31
2 changed files with 5 additions and 1 deletions
|
|
@ -28,6 +28,10 @@ And update all from dev to merge into prod.
|
||||||
- Check if [manifest/default.dev.xml](../manifest/default.dev.xml) is ready for production.
|
- Check if [manifest/default.dev.xml](../manifest/default.dev.xml) is ready for production.
|
||||||
- Run test with `make test`
|
- Run test with `make test`
|
||||||
|
|
||||||
|
### Format code
|
||||||
|
|
||||||
|
Run `make format` to format all code.
|
||||||
|
|
||||||
### Update image_db
|
### Update image_db
|
||||||
|
|
||||||
Run `make image_db_create_all` to generate database images in directory `./image_db`.
|
Run `make image_db_create_all` to generate database images in directory `./image_db`.
|
||||||
|
|
|
||||||
|
|
@ -394,7 +394,7 @@ class GitTool:
|
||||||
if (
|
if (
|
||||||
"addons/OCA_web" == repo.get("path")
|
"addons/OCA_web" == repo.get("path")
|
||||||
or "odoo" == repo.get("path")
|
or "odoo" == repo.get("path")
|
||||||
or "ERPLibre_image_db" == repo.get("path")
|
or "image_db" == repo.get("path")
|
||||||
):
|
):
|
||||||
continue
|
continue
|
||||||
str_repo = (
|
str_repo = (
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue