Skip to content

Commit

Permalink
Act on self-review: be consistent in writing
Browse files Browse the repository at this point in the history
  • Loading branch information
paulo-ferraz-oliveira committed Oct 9, 2023
1 parent 7fa76c3 commit f6deb2b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kerl
Original file line number Diff line number Diff line change
Expand Up @@ -750,12 +750,12 @@ probe_pkgs() {
os_release_id=$(get_id_from_os_release_files)

if [ "${os_release_id}" = "1" ]; then
msg="[packages] Unable to determine Linux flavor (no release files); not checking build packages."
msg="[packages] Unable to determine Linux distro (no release files); not checking build packages."
echo "${msg}" >>"$LOGFILE"
l=w stderr "${msg}"
return
elif [ "${os_release_id}" = "2" ]; then
msg="[packages] Unable to determine Linux flavor (no ID); not checking build packages."
msg="[packages] Unable to determine Linux distro (no ID); not checking build packages."
echo "${msg}" >>"$LOGFILE"
l=w stderr "${msg}"
return
Expand All @@ -778,7 +778,7 @@ probe_pkgs() {
fi
done
else
msg="[packages] Unknown Linux flavor ${os_release_id}; not checking build packages."
msg="[packages] Unknown Linux distro ${os_release_id}; not checking build packages."
echo "${msg}" >>"$LOGFILE"
l=w stderr "${msg}"
fi
Expand Down

0 comments on commit f6deb2b

Please sign in to comment.