Use POSIX compliant arguments to tail in mkisofs completion.
This commit is contained in:
parent
80db1412cd
commit
670ad0e9d6
1
CHANGES
1
CHANGES
@ -29,6 +29,7 @@ bash-completion (1.x)
|
||||
* Rename installed_alternatives() to _installed_alternatives().
|
||||
* Add /etc/pki/tls/openssl.cnf to list of default openssl config files,
|
||||
search for default ones only if -config is not given.
|
||||
* Use POSIX compliant arguments to tail in mkisofs completion.
|
||||
|
||||
[ Todd Zullinger ]
|
||||
* Make yum complete on filenames after install, deplist, update and upgrade
|
||||
|
@ -6115,7 +6115,7 @@ _mkisofs()
|
||||
;;
|
||||
-*-charset)
|
||||
COMPREPLY=( $( mkisofs -input-charset help 2>&1 | \
|
||||
tail +3 | grep "^$cur") )
|
||||
tail -n +3 | grep "^$cur") )
|
||||
return 0
|
||||
;;
|
||||
-uid)
|
||||
|
Loading…
x
Reference in New Issue
Block a user