Skip to content

Commit 2f4f93f

Browse files
committed
update_command_list: print not found error as red and aligned
To make it easier to see.
1 parent 0d2e875 commit 2f4f93f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

update_command_lists.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ download_deb() {
5858
# Get path to the deb on the repo
5959
deb_path=$(get_deb_path ${packages_file} $pkg_name $dep_version $dep_arch)
6060
if [ -z "$deb_path" ]; then
61-
echo "${pkg_name}_${dep_version}_${dep_arch}.deb not found on repo" 1>&2
61+
printf "%-50s \e[31m%s\e[0m\n" "${pkg_name}_${dep_version}_${dep_arch}.deb" "not found in repo" 1>&2
6262
return
6363
fi
6464
echo "Downloading ${repo_url}/${deb_path}" 1>&2

0 commit comments

Comments
 (0)