ne pas charger le fichier s'il n'existe pas
This commit is contained in:
parent
e5b8b81777
commit
5862e754d9
|
@ -2,19 +2,21 @@
|
|||
##@before *
|
||||
|
||||
if [ -n "$UTOOLS_BASH_COMPLETION" ]; then
|
||||
if [ -f /etc/debian_version ]; then
|
||||
if [ -z "$BASH_COMPLETION" -a -f /etc/debian_version ]; then
|
||||
case "$(</etc/debian_version)" in
|
||||
6*|squeeze*)
|
||||
# le code suivant n'est compatible qu'avec debian squeeze (plus
|
||||
# exactement, avec bash 4.0)
|
||||
source "@@dest@@/lib/ulib/bash40/bash_completion"
|
||||
_file="@@dest@@/lib/ulib/bash40/bash_completion"
|
||||
;;
|
||||
7*|wheezy*)
|
||||
# le code suivant n'est compatible qu'avec debian wheezy (plus
|
||||
# exactement, avec bash 4.1)
|
||||
source "@@dest@@/lib/ulib/bash41/bash_completion"
|
||||
_file="@@dest@@/lib/ulib/bash41/bash_completion"
|
||||
;;
|
||||
esac
|
||||
[ -f "$_file" ] && source "$_file"
|
||||
unset _file
|
||||
fi
|
||||
if [ -n "$BASH_COMPLETION" ]; then
|
||||
for i in "@@dest@@/lib/completion.d/"*; do
|
||||
|
|
Loading…
Reference in New Issue