summaryrefslogtreecommitdiff
path: root/functions
diff options
context:
space:
mode:
authorjnqnfe <jnqnfe@gmail.com>2015-01-06 03:10:15 +0000
committerLuca Boccassi <bluca@debian.org>2020-03-05 20:36:54 +0000
commit5a004878721f0bae7f7fe47b51fc86c6f2e76819 (patch)
tree620ae1f7bf80356e4885a170956fd27021792584 /functions
parent512dd582404be942fe24e0769bd7bb650c50137e (diff)
downloadvyos-live-build-5a004878721f0bae7f7fe47b51fc86c6f2e76819.tar.gz
vyos-live-build-5a004878721f0bae7f7fe47b51fc86c6f2e76819.zip
fix capitalisation of some output messages
Closes: #952875
Diffstat (limited to 'functions')
-rwxr-xr-xfunctions/stagefile.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/functions/stagefile.sh b/functions/stagefile.sh
index c1be52c0d..101bd5210 100755
--- a/functions/stagefile.sh
+++ b/functions/stagefile.sh
@@ -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