From fc6224703e47c768ecf99f14145590381164607b Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Fri, 12 Apr 2019 08:22:47 +0530 Subject: cerbero: Fix typo that was missed while merging Fixes the build on macOS. --- cerbero/utils/shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- cgit v1.2.3