代码拉取完成,页面将自动刷新
同步操作将从 OpenHarmony/build 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#!/bin/bash
# Copyright (c) 2021 Huawei Device Co., Ltd.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set -e
while [ $# -gt 0 ]; do
case "$1" in
-skip-ssl|--skip-ssl) # wget、npm skip ssl check, which will allow
# hacker to get and modify data stream between server and client!
SKIP_SSL=YES
;;
-h|--help)
HELP=YES
;;
--tool-repo)
TOOL_REPO="$2"
shift
;;
--tool-repo=*)
TOOL_REPO="${1#--tool-repo=}"
;;
--npm-registry)
NPM_REGISTRY="$2"
shift
;;
--npm-registry=*)
NPM_REGISTRY="${1#--npm-registry=}"
;;
*)
echo "$0: Warning: unsupported parameter: $1" >&2
;;
esac
shift
done
if [ "X${SKIP_SSL}" == "XYES" ];then
wget_ssl_check="--skip-ssl"
else
wget_ssl_check=''
fi
if [ "X${HELP}" == "XYES" ];then
help="-h"
else
help=''
fi
if [ ! -z "$TOOL_REPO" ];then
tool_repo="--tool-repo $TOOL_REPO"
else
tool_repo=''
fi
if [ ! -z "$NPM_REGISTRY" ];then
npm_registry="--npm-registry $NPM_REGISTRY"
else
npm_registry=''
fi
trusted_host='repo.huaweicloud.com'
index_url='http://repo.huaweicloud.com/repository/pypi/simple'
script_path=$(cd $(dirname $0);pwd)
code_dir=$(dirname ${script_path})
pip3 install --trusted-host $trusted_host -i $index_url rich
echo "prebuilts_download start"
python3 "${code_dir}/build/prebuilts_download.py" $wget_ssl_check $tool_repo $npm_registry $help
echo "prebuilts_download end"
case $(uname -s) in
Linux)
host_platform=linux
;;
Darwin)
host_platform=darwin
;;
*)
echo "Unsupported host platform: $(uname -s)"
exit 1
esac
if [[ "${host_platform}" == "linux" ]]; then
sed -i "1s%.*%#!$code_dir/prebuilts/python/${host_platform}-x86/3.9.2/bin/python3.9%" ${code_dir}/prebuilts/python/${host_platform}-x86/3.9.2/bin/pip3.9
elif [[ "${host_platform}" == "darwin" ]]; then
sed -i "" "1s%.*%#!$code_dir/prebuilts/python/${host_platform}-x86/3.9.2/bin/python3.9%" ${code_dir}/prebuilts/python/${host_platform}-x86/3.9.2/bin/pip3.9
fi
${code_dir}/prebuilts/python/${host_platform}-x86/3.9.2/bin/pip3.9 install --trusted-host $trusted_host -i $index_url pyyaml requests prompt_toolkit\=\=1.0.14 kconfiglib\>\=14.1.0
echo -e "\n"
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。