Bug 1496080 - Fix ./mach eslint --fix. r=ahal

Insert the argument in the correct place when passing to node.

Differential Revision: https://phabricator.services.mozilla.com/D7609

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Mark Banner 2018-10-03 14:44:19 +00:00
Родитель 6e23a6c1c5
Коммит a56f9d6b1a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -74,7 +74,7 @@ def lint(paths, config, binary=None, fix=None, setup=None, **lintargs):
# eslint requires that --fix be set before the --ext argument.
if fix:
cmd_args.insert(1, '--fix')
cmd_args.insert(2, '--fix')
shell = False
if os.environ.get('MSYSTEM') in ('MINGW32', 'MINGW64'):