diff options
author | jnqnfe <jnqnfe@gmail.com> | 2015-01-06 03:10:15 +0000 |
---|---|---|
committer | Luca Boccassi <bluca@debian.org> | 2020-03-05 20:36:54 +0000 |
commit | 5a004878721f0bae7f7fe47b51fc86c6f2e76819 (patch) | |
tree | 620ae1f7bf80356e4885a170956fd27021792584 /frontend | |
parent | 512dd582404be942fe24e0769bd7bb650c50137e (diff) | |
download | vyos-live-build-5a004878721f0bae7f7fe47b51fc86c6f2e76819.tar.gz vyos-live-build-5a004878721f0bae7f7fe47b51fc86c6f2e76819.zip |
fix capitalisation of some output messages
Closes: #952875
Diffstat (limited to 'frontend')
-rwxr-xr-x | frontend/lb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/lb b/frontend/lb index 6a593a65d..2bedb9d12 100755 --- a/frontend/lb +++ b/frontend/lb @@ -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 |