From 70dcc7f52867b4b66ad223f015c038d8748e7819 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 24 Jan 2023 13:54:01 -0800 Subject: [PATCH] Fix install script default directory (#1525) --- www/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/install.sh b/www/install.sh index 49c7113..418c6f1 100755 --- a/www/install.sh +++ b/www/install.sh @@ -19,7 +19,7 @@ FLAGS: OPTIONS: --tag TAG Tag (version) of the crate to install, defaults to latest release - --to LOCATION Where to install the binary [default: ~/.cargo/bin] + --to LOCATION Where to install the binary [default: ~/bin] --target TARGET EOF } @@ -98,7 +98,7 @@ if [ -z ${target-} ]; then fi if [ -z ${dest-} ]; then - dest="$HOME/.cargo/bin" + dest="$HOME/bin" fi if [ -z ${tag-} ]; then