pacman-key: fix syntax highlighting
The lone quotation mark in "pacman's" causes issues for some syntax highlighting. Change the printing of the nessage from echo to printf so we can invisibly escape it. Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
parent
62880d7568
commit
e2f00abe26
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ usage() {
|
||||||
echo
|
echo
|
||||||
printf "$(gettext "Usage: %s [options] <command> [arguments]")\n" $(basename $0)
|
printf "$(gettext "Usage: %s [options] <command> [arguments]")\n" $(basename $0)
|
||||||
echo
|
echo
|
||||||
echo "$(gettext "Manage pacman's list of trusted keys")"
|
printf "$(gettext "Manage pacman\'s list of trusted keys")\n"
|
||||||
echo
|
echo
|
||||||
echo "$(gettext "Options must be placed before commands. The available options are:")"
|
echo "$(gettext "Options must be placed before commands. The available options are:")"
|
||||||
printf "$(gettext " --config <file> Use an alternate config file (instead of '%s')")\n" "$CONFIG"
|
printf "$(gettext " --config <file> Use an alternate config file (instead of '%s')")\n" "$CONFIG"
|
||||||
|
|
Loading…
Add table
Reference in a new issue