fix capitalisation of some output messages

Closes: #952875
This commit is contained in:
jnqnfe 2015-01-06 03:10:15 +00:00 committed by Luca Boccassi
parent 512dd58240
commit 5a00487872
5 changed files with 9 additions and 9 deletions

View File

@ -29,7 +29,7 @@ test:
echo -n "."; \
done; \
else \
echo "WARNING: skipping bashism test - you need to install devscripts."; \
echo "WARNING: Skipping bashism test - you need to install devscripts."; \
fi
@echo " done."

View File

@ -50,7 +50,7 @@ case "${1}" in
# Checking user account
if [ "$(id -u)" -ne "0" ]
then
Echo_error "need root privileges"
Echo_error "Root privileges needed!"
exit 1
fi
fi
@ -80,7 +80,7 @@ case "${1}" in
# User has live-build commands in path
SCRIPT="${COMMAND}"
else
Echo_error "no such script: ${COMMAND}"
Echo_error "No such script: ${COMMAND}"
exit 1
fi

View File

@ -18,12 +18,12 @@ Check_stagefile ()
then
if [ "${_FORCE}" != "true" ]
then
# Skipping execution
Echo_warning "skipping %s, already done" "${NAME}"
# Skip execution
Echo_warning "Skipping %s, already done" "${NAME}"
exit 0
else
# Forcing execution
Echo_message "forcing %s" "${NAME}"
# Force execution
Echo_message "Forcing %s" "${NAME}"
rm -f "${FILE}"
fi
fi

View File

@ -45,7 +45,7 @@ Create_lockfile .lock
if [ "${LB_ARCHITECTURES}" != "amd64" ] && [ "${LB_ARCHITECTURES}" != "i386" ]
then
Echo_warning "skipping binary_memtest, foreign architecture."
Echo_warning "Skipping binary_memtest, foreign architecture."
exit 0
fi

View File

@ -818,7 +818,7 @@ Local_arguments ()
;;
*)
Echo_error "internal error %s" "${0}"
Echo_error "Internal error %s" "${0}"
exit 1
;;
esac