From 76d8156fd38bbabc363bffb3126fa0e5e2a599ed Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Sun, 7 Dec 2014 00:04:13 -0800 Subject: [PATCH] typo. --- build-libbitcoind.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-libbitcoind.sh b/build-libbitcoind.sh index be5f84fe..c53ea7a5 100755 --- a/build-libbitcoind.sh +++ b/build-libbitcoind.sh @@ -5,7 +5,7 @@ os_dir=$(dirname "$(./platform/os.sh)") if test -e "${os_dir}/libbitcoind.so"; then read -r -p 'libbitcoind.so already built. Rebuild? (Y/n): ' choice - if test x"$choice" != x'n' -a x"$choice" != x'N'; then + if test x"$choice" != x'y' -a x"$choice" != x'Y'; then echo 'libbitcoind.so ready.' exit 0 fi