From 51f9e6e39b3b0a735501f1f0c4d11889546f111f Mon Sep 17 00:00:00 2001 From: Scott Wadden Date: Fri, 14 Jun 2024 00:20:24 -0300 Subject: [PATCH] Roboto download fixes --- enu.nimble | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/enu.nimble b/enu.nimble index e7668974..00bfe957 100644 --- a/enu.nimble +++ b/enu.nimble @@ -149,10 +149,10 @@ proc download_fonts = exec "hdiutil detach /Volumes/SFProFonts" else: - exec "curl -OJL \"https://github.com/mobiledesres/Google-UI-fonts/blob/main/zip/Roboto.zip?raw=true\"" - exec "curl -OJL \"https://github.com/mobiledesres/Google-UI-fonts/blob/main/zip/Roboto%20Mono.zip?raw=true\"" + exec "curl -o Roboto.zip \"https://github.com/mobiledesres/Google-UI-fonts/blob/main/zip/Roboto.zip?raw=true\"" + exec "curl -o RobotoMono.zip \"https://github.com/mobiledesres/Google-UI-fonts/blob/main/zip/Roboto%20Mono.zip?raw=true\"" exec "unzip Roboto.zip" - exec "unzip -o Roboto%20Mono.zip" + exec "unzip -o RobotoMono.zip" proc mingw_path: string = var pre, match: string