Skip to content
Snippets Groups Projects
Commit 7b53bb4b authored by Francois (fge)'s avatar Francois (fge)
Browse files

[FIX] base: @odoo-module alias ending with **/


When you define an @odoo-module with an alias without any space between
the alias and the **/, the alias contains the **/.
The purpose of this commit is to no longer add the **/ to the alias.

Example:
/** @odoo-module alias=web.base**/

Before:
  odoo.define(`web.base**/`, function(require) {
After:
  odoo.define(`web.base`, function(require) {

closes odoo/odoo#66929

Signed-off-by: default avatarGéry Debongnie (ged) <ged@openerp.com>
parent 84ce701b
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment