haacked / seegit

SeeGit - The Git Repository Visualizer
MIT License
508 stars 107 forks source link

Fixed up PowerShell script #39

Closed Therzok closed 11 years ago

Therzok commented 11 years ago

Fixed up PowerShell command execution to send path as a compact string, not as strings broken down by spaces.

Also, miscellaneous newline at the end of the file.

Therzok commented 11 years ago

Example taken from your UnitTests.results.xml.

"C:\dev\git\SeeGit\" is used as path for the PowerShell script.

had one folder used spaces, i.e.

"C:\Dev Folder\git\SeeGit\" the script would have thrown the following error:

'The term C:\Dev\ is not recognized as the name of a cmdlet, function, script file or operable program...'

This commit fixes this issue.

haacked commented 11 years ago

Thanks!