Browse Source

Bypass IE not initialized error for curl

master
GoFish 5 years ago
parent
commit
5ea61e5320
  1. 2
      windows_to_go.ps1

2
windows_to_go.ps1

@ -35,7 +35,7 @@ gpg --keyserver hkp://pool.sks-keyservers.net --recv-key EE27143FD4C1C95A86B4D83
# Setup SSH key for pass # Setup SSH key for pass
if (-not (Test-Path -Path "$env:userprofile\.ssh" -PathType Container)) { if (-not (Test-Path -Path "$env:userprofile\.ssh" -PathType Container)) {
mkdir "$env:userprofile\.ssh" mkdir "$env:userprofile\.ssh"
curl https://git.axel.tripier.fr/GoFish/boxstarter-win10/raw/branch/master/windows_to_go_ssh_pass_ed25519.asc | gpg -d > "$env:userprofile\.ssh\windows_to_go_ssh_pass_ed25519" curl -UseBasicParsing https://git.axel.tripier.fr/GoFish/boxstarter-win10/raw/branch/master/windows_to_go_ssh_pass_ed25519.asc | gpg -d > "$env:userprofile\.ssh\windows_to_go_ssh_pass_ed25519"
} }
# Clone pass repo for QtPass # Clone pass repo for QtPass

Loading…
Cancel
Save