Update tell-quote.ps1

This commit is contained in:
Markus Fleschutz 2022-12-02 09:14:32 +01:00 committed by GitHub
parent c6e7da31b6
commit f20248dc0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@
#>
try {
$Table = import-csv "$PSScriptRoot/../Data/quotes.csv"
$Table = Import-CSV "$PSScriptRoot/../Data/quotes.csv"
$Generator = New-Object System.Random
$Index = [int]$Generator.next(0, $Table.Count - 1)