1
0

fix(setup): Fix conf download path in PS script

This commit is contained in:
Cem Aksoylar 2022-12-17 15:34:24 -08:00 committed by Pete Johanson
parent b8fb218a01
commit 781df31ec4

@ -217,7 +217,7 @@ if ($keyboard_type -eq "shield") {
Write-Host "Downloading config file (${url_base}/${keyboard}.conf)"
Try {
Invoke-RestMethod -Uri "${config_url}" -OutFile "${keyboard}.conf"
Invoke-RestMethod -Uri "${url_base}/${keyboard}.conf" -OutFile "${keyboard}.conf"
} Catch {
Try {
Write-Host "Could not find it, falling back to ${url_base}/${basedir}.conf"