Skip to content

Commit

Permalink
Fixed merge conflict
Browse files Browse the repository at this point in the history
Missed a conflict when merging
  • Loading branch information
Sneddo authored Aug 19, 2016
1 parent 8ba8f3e commit c162ea6
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions vCheck.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -838,22 +838,9 @@ Foreach ($pr in $PluginResult) {
# Run Style replacement
$MyReport = Get-ReportHTML

<<<<<<< HEAD
# Set the output filename - if one is specified use it, otherwise just use temp
if ($Outputpath) {
$DateHTML = Get-Date -Format "yyyyMMddHH"
$ArchiveFilePath = $Outputpath + "\Archives\" + $VIServer
if (-not (Test-Path -PathType Container $ArchiveFilePath)) { New-Item $ArchiveFilePath -type directory | Out-Null }
$Filename = $ArchiveFilePath + "\" + $VIServer + "_vCheck_" + $DateHTML + ".htm"
}
else {
$Filename = $Env:TEMP + "\" + $VIServer + "_vCheck_" + $Date.Day + "-" + $Date.Month + "-" + $Date.Year + ".htm"
}
=======
# Set the output filename
if (-not (Test-Path -PathType Container $Outputpath)) { New-Item $Outputpath -type directory | Out-Null }
$Filename = ("{0}\{1}_vCheck_{2}.htm" -f $Outputpath, $Server, (Get-Date -Format "yyyyMMdd_HHmm"))
>>>>>>> origin/dev

# Always generate the report with embedded images
$embedReport = $MyReport
Expand Down

0 comments on commit c162ea6

Please sign in to comment.