未验证 提交 b687ac0b 编写于 作者: D Daniel Larimer 提交者: GitHub

Merge pull request #1397 from CooperFu/enhancement/build-for-mac

change printf to echo for build on mac error message
......@@ -20,20 +20,20 @@
printf "\tDisk space available: ${DISK_AVAIL}G\n\n"
if [ $MEM_GIG -lt 8 ]; then
printf "\tYour system must have 8 or more Gigabytes of physical memory installed.\n"
printf "\tExiting now.\n"
echo "Your system must have 8 or more Gigabytes of physical memory installed."
echo "Exiting now."
exit 1
fi
if [ $OS_MIN -lt 12 ]; then
printf "\tYou must be running Mac OS 10.12.x or higher to install EOSIO.\n"
printf "\tExiting now.\n"
echo "You must be running Mac OS 10.12.x or higher to install EOSIO."
echo "Exiting now."
exit 1
fi
if [ $DISK_AVAIL -lt 100 ]; then
printf "\tYou must have at least 100GB of available storage to install EOSIO.\n"
printf "\tExiting now.\n"
echo "You must have at least 100GB of available storage to install EOSIO."
echo "Exiting now."
exit 1
fi
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册