From 028ace4e17ed6a681a9391aca697aaaa68ae3e89 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Sat, 20 Dec 2025 15:32:21 +0900 Subject: [PATCH] Update postInstall.ps1 --- postInstall.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postInstall.ps1 b/postInstall.ps1 index 7df6bac..d8ecd44 100644 --- a/postInstall.ps1 +++ b/postInstall.ps1 @@ -56,7 +56,7 @@ $urlsFilePath = Join-Path $ScriptRoot "data/DownloadUrls.psd1" if (Test-Path $urlsFilePath) { try { if (Get-Command Import-PowerShellDataFile -ErrorAction SilentlyContinue) { - $DownloadUrls = Import-PowerShellDataFile $urlsFilePath + $DownloadUrls = Import-PowerShellDataFile -Path $urlsFilePath } else { $DownloadUrls = Invoke-Expression (Get-Content $urlsFilePath -Raw) # Tested in Windows 8.1 }