diff --git a/component/DevkitDistribute/devkit_distribute/script/parsing_result.sh b/component/DevkitDistribute/devkit_distribute/script/parsing_result.sh index 8aa4f0548cb4671b7cc5b92ef5c08abc25046a4e..ecd4ceadff5f53d0f032a48aaaffd799b718604e 100644 --- a/component/DevkitDistribute/devkit_distribute/script/parsing_result.sh +++ b/component/DevkitDistribute/devkit_distribute/script/parsing_result.sh @@ -7,7 +7,7 @@ current_dir=$(cd $(dirname "$0"); pwd) root_path=$(realpath "${current_dir}/..") if [[ ! -e "${root_path}/data/result" ]] ; then - eixt -1 + exit 1 fi # shellcheck disable=SC2013 diff --git a/tools/install_dependency/src/download/download_utils.py b/tools/install_dependency/src/download/download_utils.py index a1acd84b825e4e9322e5ffb3572a366738b2bfd2..4be85f22db4a856a0acc5aefbe4919ba26efd73f 100644 --- a/tools/install_dependency/src/download/download_utils.py +++ b/tools/install_dependency/src/download/download_utils.py @@ -6,9 +6,9 @@ import warnings import requests import wget -from download import download_config -from constant import URL, SAVE_PATH, FILE, SHA256, FILE_SIZE, DEFAULT_PATH +from constant import URL, SAVE_PATH, FILE, SHA256, FILE_SIZE, DEFAULT_PATH +from download import download_config warnings.filterwarnings("ignore", message='Unverified HTTPS request') @@ -82,7 +82,7 @@ component_collection_map = { "DevkitDistribute": { URL: f"{download_config.LkpTests.get('DevkitDistribute')}", SAVE_PATH: f"{os.path.join(DEFAULT_PATH, download_config.LkpTests.get('DevkitDistribute').split('/')[-1])}", - FILE_SIZE: "13349673", + FILE_SIZE: "13349694", } },