1 Star 0 Fork 4

王玥/npmtest_react-native-background-timer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
prepare.sh 1.47 KB
一键复制 编辑 原始数据 按行查看 历史
wangyue 提交于 2025-01-07 21:37 . fix: sh脚本优化
export PATH=`pwd`/rnoh_shell:$PATH
source check_env.sh
function prepare() {
check_files
# ===================================================================================================================
prepare_rnoh_prebuild
# ===================================================================================================================
prepare_project $1
if [ $? -ne 0 ]; then
echo "Failed to execute prepare_project()!!!"
return 1
fi
# ===================================================================================================================
prepare_tools
if [ $? -ne 0 ]; then
rm -rf "$TOOLS_DIR"/
echo "Failed to execute prepare_tools()!!!"
return 1
fi
# ===================================================================================================================
# 测试,看有没有GLIBC版本报错
export PATH="$TOOLS_DIR"/bin:"$TOOLS_DIR"/tool/node/bin:$PATH
echo "开始检测Node版本!!!"
echo "环境变量:$PATH"
node -v
npm -v
# ===================================================================================================================
prepare_config_files
if [ $? -ne 0 ]; then
echo "Failed to execute prepare_config_files()!!!"
return 1
fi
# ===================================================================================================================
echo "prepare build successfully!!!"
return 0
}
prepare $@
exit $?
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wangyue6/npmtest_react-native-background-timer.git
[email protected]:wangyue6/npmtest_react-native-background-timer.git
wangyue6
npmtest_react-native-background-timer
npmtest_react-native-background-timer
master

搜索帮助