Use tab indents and undo last speedup

This commit is contained in:
Anthony Rose 2021-05-02 22:17:58 +01:00
parent 8b9213fde7
commit bb1e7680fc

View file

@ -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