diff --git a/lib/autofix.js b/lib/autofix.js index 4161334fc..cfb0d8f4f 100644 --- a/lib/autofix.js +++ b/lib/autofix.js @@ -106,9 +106,8 @@ function formatFileContent(options, file, filePath) { if (options.elmFormatPath) { const spawnedUsingPathFromArgs = spawn.sync( options.elmFormatPath, - ['--elm-version=0.19', '--stdin', '--output', `"${filePath}"`], + ['--elm-version=0.19', '--stdin', '--output', filePath], { - shell: true, input: file.source } ); @@ -135,10 +134,9 @@ function formatFileContent(options, file, filePath) { '--elm-version=0.19', '--stdin', '--output', - `"${filePath}"` + filePath ], { - shell: true, input: file.source } ); @@ -162,9 +160,8 @@ A few options: const spawnedUsingGlobal = spawn.sync( 'elm-format', - ['--yes', '--elm-version=0.19', '--stdin', '--output', `"${filePath}"`], + ['--yes', '--elm-version=0.19', '--stdin', '--output', filePath], { - shell: true, input: file.source } );