From 1ae02fe80d0c44cd93118a54f970d3ec3cee261f Mon Sep 17 00:00:00 2001 From: amd64fox Date: Thu, 1 Sep 2022 00:01:22 +0300 Subject: [PATCH] typo --- Install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Install.ps1 b/Install.ps1 index a2fce38..43fb37f 100644 --- a/Install.ps1 +++ b/Install.ps1 @@ -162,9 +162,9 @@ function Format-LanguageCode { function CallLang($clg) { [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 - C:\Users\Ps1\Documents\GitHub\SpotX\scripts\installer-lang $urlLang = "https://raw.githubusercontent.com/amd64fox/SpotX/main/scripts/installer-lang/$clg.ps1" $ProgressPreference = 'SilentlyContinue' + try { (Invoke-WebRequest -useb $urlLang).Content | Invoke-Expression }