aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/rpm.fish
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2007-01-26 11:26:31 +1000
committerGravatar axel <axel@liljencrantz.se>2007-01-26 11:26:31 +1000
commitcfecb58bb6612ea3775b4c41a27f97d6181f5e7d (patch)
tree03dd0d2f11e0031483a28afde4d1a229e6fbf87a /share/completions/rpm.fish
parent11c2ec91d4fe192b067880d430c562e8e160b4ca (diff)
Fix various completions that didno't drop the N_ no-op
darcs-hash:20070126012631-ac50b-4e13c06ddbf73f05a0a26824c71dbb96aa7ce0b9.gz
Diffstat (limited to 'share/completions/rpm.fish')
-rw-r--r--share/completions/rpm.fish6
1 files changed, 3 insertions, 3 deletions
diff --git a/share/completions/rpm.fish b/share/completions/rpm.fish
index 75aa7967..eda36734 100644
--- a/share/completions/rpm.fish
+++ b/share/completions/rpm.fish
@@ -35,7 +35,7 @@ complete $rpm_install -l nodigest --description "Don't verify package or header
complete $rpm_install -l nosignature --description "Don't verify package or header signatures when reading"
complete $rpm_install -l nodeps --description "Don't do a dependency check"
complete $rpm_install -l nosuggest --description "Don't suggest package(s) that provide a missing dependency"
-complete $rpm_install -l noorder -d (N_ "Don't change the package installation order" )
+complete $rpm_install -l noorder --description "Don't change the package installation order"
complete $rpm_install -l noscripts --description "Don't execute scripts"
complete $rpm_install -l nopre --description "Don't execute pre scripts"
complete $rpm_install -l nopost --description "Don't execute post scripts"
@@ -48,7 +48,7 @@ complete $rpm_install -l notriggerpostun --description "Don't execute triggerpos
complete $rpm_install -l oldpackage --description 'Allow an upgrade to replace a newer package with an older one'
complete $rpm_install -l percent --description 'Print percentages as files are unpacked from the package archive. This is intended to make rpm easy to run from other tools'
complete $rpm_install -l prefix --description 'For relocatable binary packages, translate all file paths that start with the installation prefix in the package relocation hint(s) to NEWPATH' -xa "(__fish_complete_directories (commandline -ct) 'Directory prefix for relocatable packages')"
-complete $rpm_install -l relocate -x -d (N_ "Translate all paths that start with first half of following parameter to second half of following parameter" )
+complete $rpm_install -l relocate -x --description "Translate all paths that start with first half of following parameter to second half of following parameter"
complete $rpm_install -l repackage --description 'Re-package the files before erasing'
complete $rpm_install -l replacefiles --description 'Install the packages even if they replace files from other, already installed, packages'
complete $rpm_install -l replacepkgs --description 'Install the packages even if some of them are already installed on this system'
@@ -116,7 +116,7 @@ complete $rpm_erase -l notriggers --description "Don't execute trigger scriptlet
complete $rpm_erase -l notriggerun --description "Don't execute triggerun scriptlets"
complete $rpm_erase -l notriggerpostun --description "Don't execute triggerpostun scriptlets"
complete $rpm_erase -l repackage --description 'Re-package the files before erasing'
-complete $rpm_erase -l test -d (N_ "Don't really uninstall anything" )
+complete $rpm_erase -l test --description "Don't really uninstall anything"
set -e rpm_erase
set rpm_mode -c rpm -n '__fish_contains_opt -s e -s i -s F -s V -s U -s q erase install freshen verify upgrade query; if test $status = 0; false; else; true; end'