🩹 Various simple fixes

This commit is contained in:
Scott Lahteine 2023-02-08 20:28:56 -06:00
parent 7e79fc5b8e
commit f595878b5b
16 changed files with 53 additions and 64 deletions

View file

@ -90,7 +90,7 @@ def fetch_example(url):
if '@' in url: url, brch = map(str.strip, url.split('@'))
url = f"https://raw.githubusercontent.com/MarlinFirmware/Configurations/{brch}/config/{url}"
url = url.replace("%", "%25").replace(" ", "%20")
# Find a suitable fetch command
if shutil.which("curl") is not None:
fetch = "curl -L -s -S -f -o"