summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2019-04-12 08:22:47 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2019-04-12 08:22:47 +0530
commitfc6224703e47c768ecf99f14145590381164607b (patch)
treef0c4db27123493ffc37080d36894be7735f7cd42
parentd49e0cdd63276890f40b6363a804b1d59feefdfc (diff)
cerbero: Fix typo that was missed while merging1.15.90
Fixes the build on macOS.
-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: