From 23a3bf2b921528fa6d14f9e7a52ec5add42119a8 Mon Sep 17 00:00:00 2001 From: Dunky-Z <254758318@qq.com> Date: Sat, 15 Jul 2023 00:29:17 +0800 Subject: [PATCH] fix: fix spelling mistake in print statement Signed-off-by: Dongdong Zhang --- tools/get_dep.pl | 2 +- tools/repo_mgmt/sync_common.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/get_dep.pl b/tools/get_dep.pl index d3c5fd35..9488ca4d 100755 --- a/tools/get_dep.pl +++ b/tools/get_dep.pl @@ -192,7 +192,7 @@ sub _process_bp print "package: [" . $pkg . "]\n"; print "version: " . $pkg_info{"version"} . "\n"; - print "build dependenies:\n"; + print "build dependencies:\n"; %pkg_info = %{ $pkg_dep_map{$pkg} }; %pkg_info = %{ $pkg_info{'pkgs'} }; diff --git a/tools/repo_mgmt/sync_common.sh b/tools/repo_mgmt/sync_common.sh index 5878f451..d64d20a1 100755 --- a/tools/repo_mgmt/sync_common.sh +++ b/tools/repo_mgmt/sync_common.sh @@ -26,7 +26,7 @@ else echo -e "${BOLDYELLOW}:: Starting reposync...${ENDCOLOR}"; eval $sync_command; sync_exit=$?; - echo -e "${BOLDYELLOW}:: Repository syncronized.${ENDCOLOR}"; + echo -e "${BOLDYELLOW}:: Repository synchronized.${ENDCOLOR}"; echo -e "${BOLDYELLOW}:: Starting createrepo...${ENDCOLOR}"; eval $meta_gen_command; meta_exit=$?; -- Gitee