* util/grub-install.in: Unify "option requires an argument" message
with similar messages in other files. * util/grub-mkconfig.in: Likewise.
This commit is contained in:
parent
b7308f90f5
commit
d95862ef75
3 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2012-03-05 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* util/grub-install.in: Unify "option requires an argument" message
|
||||||
|
with similar messages in other files.
|
||||||
|
* util/grub-mkconfig.in: Likewise.
|
||||||
|
|
||||||
2012-03-05 Vladimir Serbinenko <phcoder@gmail.com>
|
2012-03-05 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* util/grub-set-default.in: Replace printf with gettext_printf (the
|
* util/grub-set-default.in: Replace printf with gettext_printf (the
|
||||||
|
|
|
@ -122,7 +122,7 @@ argument () {
|
||||||
shift
|
shift
|
||||||
|
|
||||||
if test $# -eq 0; then
|
if test $# -eq 0; then
|
||||||
gettext_printf "%s: option requires an argument -- \`%s'" "$0" "$opt" 1>&2
|
gettext_printf "%s: option requires an argument -- \`%s'\n" "$0" "$opt" 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
echo "$1"
|
echo "$1"
|
||||||
|
|
|
@ -66,7 +66,7 @@ argument () {
|
||||||
shift
|
shift
|
||||||
|
|
||||||
if test $# -eq 0; then
|
if test $# -eq 0; then
|
||||||
gettext_printf "%s: option requires an argument -- \`%s'" "$0" "$opt" 1>&2
|
gettext_printf "%s: option requires an argument -- \`%s'\n" "$0" "$opt" 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
echo $1
|
echo $1
|
||||||
|
|
Loading…
Reference in a new issue