Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
majkinetor committed Nov 17, 2017
1 parent 383b46e commit 53da875
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -317,10 +317,12 @@ The software vendor may maintain _multiple latest versions_, of specific release
```powershell
function global:au_GetLatest {
# ...
$streams = @{}
$streams.'1.2' = @{ Version = $version12; URL32 = $url12 } # $version12 = '1.2.3.1'
$streams.'1.3' = @{ Version = $version13; URL32 = $url13 } # $version13 = '1.3.9'
@{ Streams = $streams }
@ {
Streams = @{
'1.2' = @{ Version = $version12; URL32 = $url12 } # $version12 = '1.2.3.1'
'1.3' = @{ Version = $version13; URL32 = $url13 } # $version13 = '1.3.9'
}
}
}
```

Expand Down

0 comments on commit 53da875

Please sign in to comment.