This commit is contained in:
Christopher Jeffrey 2014-12-07 00:04:13 -08:00
parent 612d263180
commit 76d8156fd3
1 changed files with 1 additions and 1 deletions

View File

@ -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