fix(nit): fixed typo in install.sh (#3)

Reviewed-on: https://codeberg.org/vegvisir/install/pulls/3
Co-authored-by: vlw <victor@vlw.se>
Co-committed-by: vlw <victor@vlw.se>
This commit is contained in:
Victor Westerlund 2025-03-11 07:33:57 +00:00 committed by Victor Westerlund
parent fbeba8c348
commit 6bcd4a0368

View file

@ -9,7 +9,7 @@ echo_err() {
# Bail out from an error with a message asking the user to report the incident
exit_report() {
echo_err "Please report error at: https://codeberg.org/vegvisir/install/issues"
echo_err "Please report this error at: https://codeberg.org/vegvisir/install/issues"
exit 1
}
@ -25,7 +25,7 @@ check_sys_depend() {
fi
done
# Bail out if required packages are missing
# Bail out if any required package is missing
if [ "$valid" = false ] ; then
exit 1
fi