Merge pull request #251 from rrushton/master

Add check for Windows and use windows specific 'mv' command

See #248
This commit is contained in:
Glavin Wiechert 2015-03-25 14:13:41 -03:00
commit a0576c419e
1 changed files with 4 additions and 1 deletions

View File

@ -14,6 +14,9 @@ getCmd = (inputPath, outputPath, options) ->
if fixers if fixers
fixerOption = " --fixers=#{fixers} " fixerOption = " --fixers=#{fixers} "
if process.platform == 'win32'
cmd = "#{levelOption} #{fixerOption} \"#{inputPath}\") & move \"#{inputPath}\" \"#{outputPath}\""
else
cmd = "#{levelOption} #{fixerOption} \"#{inputPath}\") || (mv \"#{inputPath}\" \"#{outputPath}\")" cmd = "#{levelOption} #{fixerOption} \"#{inputPath}\") || (mv \"#{inputPath}\" \"#{outputPath}\")"
if phpCsFixerPath if phpCsFixerPath