index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Dan McGee <dan@archlinux.org> | 2011-06-08 02:49:09 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-06-08 02:49:09 -0500 |
commit | dfaeb6bb2ca8311ac418a16c30006eb7d0534d71 (patch) | |
tree | 227f127eb1a35e20689b1b60b4dbe5255c7e9a7f /scripts/pacman-key.sh.in | |
parent | 11ba7a0e8a253bff53778688ee174f42c1513738 (diff) | |
parent | 87072ff63907ce6040be7e59b9b07fd891a8254a (diff) |
-rw-r--r-- | scripts/pacman-key.sh.in | 14 |
diff --git a/scripts/pacman-key.sh.in b/scripts/pacman-key.sh.in index 80f8bc7c..20ec20fa 100644 --- a/scripts/pacman-key.sh.in +++ b/scripts/pacman-key.sh.in @@ -87,12 +87,12 @@ There is NO WARRANTY, to the extent permitted by law.\n")" # 'key', 'equal sign' and 'value' can be surrounded by random whitespace # Usage: get_from "$file" "$key" # returns the value for the first matching key in the file get_from() { - while read key _ value; do - if [[ $key = $2 ]]; then - echo "$value" - break - fi - done < "$1" + while read key _ value; do + if [[ $key = $2 ]]; then + echo "$value" + break + fi + done < "$1" } reload_keyring() { @@ -328,3 +328,5 @@ case "${command}" in error "$(gettext "Unknown command:") $command" usage; exit 1 ;; esac + +# vim: set ts=2 sw=2 noet: |