1. 21 Aug, 2014 15 commits
  2. 20 Aug, 2014 7 commits
  3. 19 Aug, 2014 16 commits
  4. 18 Aug, 2014 2 commits
    • $powershellpath is called as ".$powershellpath" · f0004b16
      $powershell path is set to "C:\powershell" at line 27. This is fine, but on line 82 $powershellpath is called as ".$powershellpath\$filename". Because the path at line 27 is absolute, a period preceding the $powershellpath is not required at 82. It actually causes an error:
      
      Start-Process : This command cannot be executed due to the error: Unknown error (0x80041002).
      At C:\users\Nathan Sosnovske\Documents\ps2to3.ps1:81 char:14
      
      Start-Process <<<< -FilePath ".$powershellpath\$filename" -ArgumentList /quiet
      CategoryInfo : InvalidOperation: (:) [Start-Process], InvalidOperationException
      FullyQualifiedErrorId : InvalidOperationException,Microsoft.PowerShell.Commands.StartProcessCommand
      Removing the period on line 82 before $powershellpath fixes this error.
      nathansoz committed
    • Fix check mode issues with copy module · 379e3188
      Fixes #8639
      James Cammarata committed