Skip to content

Commit

Permalink
Merge branch 'stable'
Browse files Browse the repository at this point in the history
* stable:
  (maint) formatting
  (maint) provide posh clr version
  • Loading branch information
ferventcoder committed Apr 2, 2016
2 parents 1af098e + 727879c commit 6b011ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/chocolatey.resources/helpers/chocolateyInstaller.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ $packageParameters = $env:chocolateyPackageParameters
# ensure module loading preference is on
$PSModuleAutoLoadingPreference = "All";

Write-Debug "Posh version is $($psversiontable.PsVersion.ToString())"
Write-Debug "PowerShell Version is '$($PSVersionTable.PSVersion)' and CLR Version is '$($PSVersionTable.CLRVersion)'."

# grab functions from files
Get-Item $helpersPath\functions\*.ps1 |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ public override Size MaxWindowSize

public override Coordinates WindowPosition {
get { return new Coordinates(Console.WindowLeft, Console.WindowTop); }
set { Console.SetWindowPosition(value.X, value.Y); } }
set { Console.SetWindowPosition(value.X, value.Y); }
}

public override Size WindowSize
{
Expand Down

0 comments on commit 6b011ff

Please sign in to comment.