1 Star 1 Fork 23

李帅/openharmony_oneclick_env_init

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
apt_get_install.sh 612 Bytes
一键复制 编辑 原始数据 按行查看 历史
mamingshuai 提交于 2022-02-28 07:16 . update apt_get_install.sh.
#!/bin/bash
baseDirForScriptSelf=$(cd "$(dirname "$0")"; pwd)
# 初始化环境变量
source ${baseDirForScriptSelf}/source.sh
# 为了防止某个依赖安装失败导致整个失败,逐个安装
## 内网不需要配置代理
if [ "${is_huawei}" == "true" ];then
unset http_proxy;unset https_proxy
fi
echo 'Installing the dependency using the apt-get, about 5 to 10 minutes.'
need_tools=`cat ${baseDirForScriptSelf}/apt_install.list`
for one_tools in ${need_tools}
do
echo "Install ${one_tools} ..."
sudo bash -c "apt-get install -y ${one_tools} >>${baseDirForScriptSelf}/init_run.log 2>&1"
done
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/code_fighter/openharmony_oneclick_env_init.git
git@gitee.com:code_fighter/openharmony_oneclick_env_init.git
code_fighter
openharmony_oneclick_env_init
openharmony_oneclick_env_init
master

搜索帮助