Skip to content

Commit

Permalink
Merge pull request #68 from OctopusDeploy/verboseversiontable
Browse files Browse the repository at this point in the history
Write-Verbose $PSVersionTable
  • Loading branch information
michaelnoonan committed Nov 20, 2015
2 parents a6c97f8 + e52cda3 commit 359af9d
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ $ErrorActionPreference = 'Stop'
# Functions
# -----------------------------------------------------------------

function Write-VersionTable
{
Write-Verbose ($PSVersionTable | Out-String)
}

function Convert-ServiceMessageValue([string]$value)
{
$valueBytes = [System.Text.Encoding]::UTF8.GetBytes($value)
Expand Down Expand Up @@ -115,6 +120,8 @@ function Initialize-ProxySettings()
}
}

Write-VersionTable

# -----------------------------------------------------------------
# Variables
# -----------------------------------------------------------------
Expand Down

0 comments on commit 359af9d

Please sign in to comment.