index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Dan McGee <dan@archlinux.org> | 2008-02-20 18:57:46 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-02-20 18:58:04 -0600 |
commit | 4bd52f3fe4d21fc4d54aba7b7c5d3134d69f9341 (patch) | |
tree | 0174e2bcf440f66cc94d75c4840bac3862bdb926 /scripts/repo-remove.sh.in | |
parent | 92ab7c33fb4d72eba070636f620f595dc4650ee9 (diff) | |
parent | 420c8846b984b5ca8ddd27ff7b799ec77fbbc2a4 (diff) |
-rw-r--r-- | scripts/repo-remove.sh.in | 7 |
diff --git a/scripts/repo-remove.sh.in b/scripts/repo-remove.sh.in index fe230b02..47a0d5ae 100644 --- a/scripts/repo-remove.sh.in +++ b/scripts/repo-remove.sh.in @@ -95,6 +95,13 @@ db_remove_entry() { # PROGRAM START +# determine whether we have gettext; make it a no-op if we do not +if [ ! $(type -t gettext) ]; then + gettext() { + echo "$@" + } +fi + # check for help flags if [ "$1" = "-h" -o "$1" = "--help" ]; then usage |