summaryrefslogtreecommitdiff
path: root/bash
diff options
context:
space:
mode:
authorDan Nicholson <dbn@endlessos.org>2023-01-29 09:28:31 -0700
committerDan Nicholson <dbn@endlessos.org>2023-02-07 22:59:20 -0700
commit2b8707b010b0e81f8f95cdbb6558572cea04e7d9 (patch)
treebb3856b11a7a4a267242949b211b7f0acbde03af /bash
parentaf505336c2e95820c98fc8e32bce665d5a03c795 (diff)
downloadostree-2b8707b010b0e81f8f95cdbb6558572cea04e7d9.tar.gz
bin: Cleanup documentation of --cache-dir option
In all cases documentation was missing from the manual and the bash completion was incorrectly assigning it as a boolean option.
Diffstat (limited to 'bash')
-rw-r--r--bash/ostree12
1 files changed, 6 insertions, 6 deletions
diff --git a/bash/ostree b/bash/ostree
index 6f3b86ea..5958176f 100644
--- a/bash/ostree
+++ b/bash/ostree
@@ -900,7 +900,6 @@ _ostree_pull() {
local boolean_options="
$main_boolean_options
--commit-metadata-only
- --cache-dir
--disable-fsync
--disable-static-deltas
--require-static-deltas
@@ -912,6 +911,7 @@ _ostree_pull() {
"
local options_with_args="
+ --cache-dir
--depth
--http-header
--localcache-repo -L
@@ -925,7 +925,7 @@ _ostree_pull() {
local options_with_args_glob=$( __ostree_to_extglob "$options_with_args" )
case "$prev" in
- --localcache-repo|-L|--repo|--subpath)
+ --cache-dir|--localcache-repo|-L|--repo|--subpath)
__ostree_compreply_dirs_only
return 0
;;
@@ -1274,17 +1274,17 @@ _ostree_remote_list_gpg_keys() {
_ostree_remote_refs() {
local boolean_options="
$main_boolean_options
- --cache-dir
"
local options_with_args="
+ --cache-dir
--repo
"
local options_with_args_glob=$( __ostree_to_extglob "$options_with_args" )
case "$prev" in
- --repo)
+ --cache-dir|--repo)
__ostree_compreply_dirs_only
return 0
;;
@@ -1343,18 +1343,18 @@ _ostree_remote_show_url() {
_ostree_remote_summary() {
local boolean_options="
$main_boolean_options
- --cache-dir
--raw
"
local options_with_args="
+ --cache-dir
--repo
"
local options_with_args_glob=$( __ostree_to_extglob "$options_with_args" )
case "$prev" in
- --repo)
+ --cache-dir|--repo)
__ostree_compreply_dirs_only
return 0
;;