From 4437dfa163bdf413bf3200f0ac87964744c58c1f Mon Sep 17 00:00:00 2001 From: Daniel Van Der Maden Date: Fri, 27 Dec 2019 19:00:13 -0800 Subject: [PATCH] [util] Change default replace to true for `download_cli` --- pyhmy/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyhmy/util.py b/pyhmy/util.py index 354edc5..03d691e 100644 --- a/pyhmy/util.py +++ b/pyhmy/util.py @@ -68,7 +68,7 @@ def get_bls_build_variables(): return variables -def download_cli(bin_name="hmy", replace=False, verbose=True): +def download_cli(bin_name="hmy", replace=True, verbose=True): """ This function will download the statically linked CLI binary into a bin directory within the current working directory.