From f20248dc0a44a49fc827bc43a3a5325602c2a752 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Fri, 2 Dec 2022 09:14:32 +0100 Subject: [PATCH] Update tell-quote.ps1 --- Scripts/tell-quote.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/tell-quote.ps1 b/Scripts/tell-quote.ps1 index 3a90daa5..14f1850c 100755 --- a/Scripts/tell-quote.ps1 +++ b/Scripts/tell-quote.ps1 @@ -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)