diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-08-10 12:48:35 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-08-10 12:48:35 -0400 |
commit | 3f9eef3cde6b1a03d64535fa02dd4f1c5d8b2a08 (patch) | |
tree | 84c77b1b9f5587ec6ff0694c3515f4239c1852f3 | |
parent | 6e757a7f0364d7a43ea2c2844b28690d30137661 (diff) | |
download | external_python_setuptools-3f9eef3cde6b1a03d64535fa02dd4f1c5d8b2a08.tar.gz external_python_setuptools-3f9eef3cde6b1a03d64535fa02dd4f1c5d8b2a08.tar.bz2 external_python_setuptools-3f9eef3cde6b1a03d64535fa02dd4f1c5d8b2a08.zip |
Use more explicit command-line parameters
-rw-r--r-- | ez_setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ez_setup.py b/ez_setup.py index 3b41ab8b..72d250a2 100644 --- a/ez_setup.py +++ b/ez_setup.py @@ -160,7 +160,7 @@ download_file_powershell.viable = ( ) def download_file_curl(url, target): - cmd = ['curl', url, '-o', target] + cmd = ['curl', url, '--silent', '--output', target] subprocess.check_call(cmd) def has_curl(): @@ -174,7 +174,7 @@ def has_curl(): download_file_curl.viable = has_curl def download_file_wget(url, target): - cmd = ['wget', url, '-q', '-O', target] + cmd = ['wget', url, '--quiet', '--output-document', target] subprocess.check_call(cmd) def has_wget(): |