mirror of
https://github.com/tridactyl/tridactyl.git
synced 2026-09-10 07:16:33 -04:00
Native, Windows: bypass execution policy in install command
Fixes #3471
This commit is contained in:
parent
df8a745f62
commit
a4216c22d9
|
|
@ -1152,7 +1152,7 @@ const platform_defaults = {
|
|||
"<C-6>": "buffer #",
|
||||
} as unknown,
|
||||
|
||||
nativeinstallcmd: `powershell -NoProfile -Command "\
|
||||
nativeinstallcmd: `powershell -ExecutionPolicy Bypass -NoProfile -Command "\
|
||||
[Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls12;\
|
||||
(New-Object System.Net.WebClient).DownloadFile('https://raw.githubusercontent.com/tridactyl/native_messenger/master/installers/windows.ps1', '%TEMP%/tridactyl_installnative.ps1');\
|
||||
& '%TEMP%/tridactyl_installnative.ps1' -Tag %TAG;\
|
||||
|
|
|
|||
Loading…
Reference in a new issue