提交 8b038f08 编写于 作者: B Bill Hamilton

amazon: modified eosio_build_amazon.sh for options and refactored eosio_build.sh

上级 3d679170
......@@ -201,11 +201,19 @@
printf "\\n\\n>>>>>>>> ALL dependencies sucessfully found or installed . Installing EOS.IO\\n\\n"
if [ ! -d "${BUILD_DIR}" ]; then
mkdir -p "${BUILD_DIR}"
if ! mkdir -p "${BUILD_DIR}"
then
printf "Unable to create build directory %s.\\n Exiting now.\\n" "${BUILD_DIR}"
exit 1;
fi
fi
if ! cd "${BUILD_DIR}"
then
printf "Unable to enter build directory %s.\\n Exiting now.\\n" "${BUILD_DIR}"
exit 1;
fi
cd "${BUILD_DIR}"
if [ -z "$CMAKE" ]; then
CMAKE=$( command -v cmake )
fi
......
此差异已折叠。
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册