Skip to content
Snippets Groups Projects
Commit 7f6cd542 authored by Arnaud Baes's avatar Arnaud Baes
Browse files

[ADD] base: explicit rtlcss configuration


Changes in default can be bothersome, embed a full baseline
configuration for reliability.

closes odoo/odoo#27926

Signed-off-by: default avatarPierre Masereel <pim@odoo.com>
parent 1bd9f69f
No related branches found
No related tags found
No related merge requests found
{
"options": {
"autoRename": false,
"autoRenameStrict": false,
"blacklist": {
"rtlcss": {
"config": true,
"options": true
}
},
"clean": true,
"greedy": false,
"processUrls": false,
"stringMap": [],
"useCalc": false,
"aliases": {},
"processEnv": false
},
"plugins": [],
"map": false
}
......@@ -573,8 +573,8 @@ class AssetsBundle(object):
rtlcss = misc.find_in_path('rtlcss.cmd')
except IOError:
rtlcss = 'rtlcss'
cmd = [rtlcss, '-']
cmd = [rtlcss, '-c', get_resource_path("base", "data/rtlcss.json"), '-']
try:
rtlcss = Popen(cmd, stdin=PIPE, stdout=PIPE, stderr=PIPE)
......
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