Skip to content
Snippets Groups Projects
Commit 765d1fd4 authored by Mark OLESEN's avatar Mark OLESEN
Browse files

CONFIG: avoid bash completions for non-bash shells (eg, dash, ksh, zsh)

parent 3ec4c7eb
1 merge request!121Merge develop into master for v1706 release
......@@ -170,7 +170,12 @@ export PATH LD_LIBRARY_PATH MANPATH
# ~~~~~~~~~~~~~~~~~~~~~~~~~~
_foamEtc config.sh/settings
_foamEtc config.sh/aliases
_foamEtc config.sh/bashcompletion
# Bash completions
if command -v complete > /dev/null 2>&1
then
_foamEtc config.sh/bashcompletion
fi
# Source user setup files for optional packages
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment