From 84a8cf115338e271958e907af9b75871db6bdd58 Mon Sep 17 00:00:00 2001 From: Carla Kirk-Cohen Date: Fri, 19 Apr 2024 09:42:38 -0400 Subject: [PATCH] setup: use release install so that lncli will use right arch --- setup/install_cli.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/install_cli.sh b/setup/install_cli.sh index 8c17d60..565566c 100755 --- a/setup/install_cli.sh +++ b/setup/install_cli.sh @@ -26,7 +26,7 @@ mv "$bitcoin_dir/bin/bitcoin-cli" /bin git clone https://github.com/carlaKC/lnd cd lnd git checkout attackathon -make install +make release-install mv /root/go/bin/lncli /bin cd ..