summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cerbero/utils/shell.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cerbero/utils/shell.py b/cerbero/utils/shell.py
index b09dbf02..a0f0dad7 100644
--- a/cerbero/utils/shell.py
+++ b/cerbero/utils/shell.py
@@ -383,7 +383,7 @@ def download_curl(url, destination=None, check_cert=True, overwrite=False):
@type destination: str
'''
path = None
- cmd = "curl -L -fail "
+ cmd = "curl -L --fail "
if not check_cert:
cmd += " -k "
if destination is not None: