Fix breaking newline
authorPaul Milla <68879922+PMilla-MS@users.noreply.github.com>
Mon, 14 Jun 2021 18:09:00 +0000 (11:09 -0700)
committerAJ ONeal <coolaj86@gmail.com>
Tue, 15 Jun 2021 03:46:55 +0000 (21:46 -0600)
New line causes the command to throw an exception instead of correctly installing font

nerdfont/install.ps1

index cd6aa45d97186946248f6116b97c09592e1cfb9a..398dafde4d5df20126de31737a044105d3b195fc 100644 (file)
@@ -6,9 +6,7 @@ $my_fontdir = "$Env:UserProfile\AppData\Local\Microsoft\Windows\Fonts"
 New-Item -Path "$my_fontdir" -ItemType Directory -Force | out-null
 IF (!(Test-Path -Path "$my_fontdir\$my_nerdfont_otf"))
 {
-
-    & curl.exe -fsSLo "$my_nerdfont_otf" 'https://github.com/ryanoasis/nerd-fonts/raw/master/patched-fonts/DroidSansMono/complete
-/Droid%20Sans%20Mono%20Nerd%20Font%20Complete%20Windows%20Compatible.otf'
+    & curl.exe -fsSLo "$my_nerdfont_otf" 'https://github.com/ryanoasis/nerd-fonts/raw/master/patched-fonts/DroidSansMono/complete/Droid%20Sans%20Mono%20Nerd%20Font%20Complete%20Windows%20Compatible.otf'
     & move "$my_nerdfont_otf" "$my_fontdir"
 }