File tree Expand file tree Collapse file tree 1 file changed +27
-1
lines changed Expand file tree Collapse file tree 1 file changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ _dpkg()
54
54
_filedir ' ?(u|d)deb'
55
55
return
56
56
;;
57
- --build | -! (-* )b)
57
+ --build | --admindir | --instdir | --root | - ! (-* )b)
58
58
_filedir -d
59
59
return
60
60
;;
@@ -82,6 +82,32 @@ _dpkg()
82
82
COMPREPLY=($( _comp_dpkg_purgeable_packages " $cur " ) )
83
83
return
84
84
;;
85
+ --debug | -! (-* )D)
86
+ COMPREPLY=($( compgen -W ' help' -- " $cur " ) )
87
+ return
88
+ ;;
89
+ --ignore-depends)
90
+ local packages=$(
91
+ cur=${cur##* ,} _xfunc apt-cache _apt_cache_packages
92
+ )
93
+ _comp_delimited , -W ' $packages'
94
+ return
95
+ ;;
96
+ --log)
97
+ _filedir log
98
+ return
99
+ ;;
100
+ --path-exclude | --path-include)
101
+ return
102
+ ;;
103
+ --status-logger)
104
+ COMPREPLY=($( compgen -c -- " $cur " ) )
105
+ return
106
+ ;;
107
+ --verify-format)
108
+ COMPREPLY=($( compgen -W ' rpm' -- " $cur " ) )
109
+ return
110
+ ;;
85
111
esac
86
112
87
113
$split && return
You can’t perform that action at this time.
0 commit comments