Use tab indents and undo last speedup
This commit is contained in:
parent
8b9213fde7
commit
bb1e7680fc
1 changed files with 73 additions and 71 deletions
|
@ -1,19 +1,21 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
export ACP_BASHRC=1
|
export ACP_BASHRC=1
|
||||||
|
|
||||||
|
if [ -f /etc/bashrc ]
|
||||||
|
then
|
||||||
|
. /etc/bashrc
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -f /usr/share/bash-completion/bash_completion ]
|
if [ -f /usr/share/bash-completion/bash_completion ]
|
||||||
then
|
then
|
||||||
true
|
|
||||||
. /usr/share/bash-completion/bash_completion
|
. /usr/share/bash-completion/bash_completion
|
||||||
elif [ -f /etc/bash_completion ]
|
elif [ -f /etc/bash_completion ]
|
||||||
then
|
then
|
||||||
true
|
|
||||||
. /etc/bash_completion
|
. /etc/bash_completion
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -f /usr/share/bash-completion/completions/quilt ]
|
if [ -f /usr/share/bash-completion/completions/quilt ]
|
||||||
then
|
then
|
||||||
true
|
|
||||||
. /usr/share/bash-completion/completions/quilt
|
. /usr/share/bash-completion/completions/quilt
|
||||||
complete -F _quilt_completion -o filenames dquilt
|
complete -F _quilt_completion -o filenames dquilt
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue