We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 932a36a commit c858efdCopy full SHA for c858efd
1 file changed
src/output.py
@@ -170,7 +170,9 @@ def appendAliasExpansion():
170
# despite documentation hinting otherwise.
171
#
172
# so here we must ask bash to turn on alias expansion.
173
- appendToFile("""
+ shell = os.environ.get('SHELL')
174
+ if 'fish' not in shell:
175
+ appendToFile("""
176
if type shopt > /dev/null; then
177
shopt -s expand_aliases
178
fi
0 commit comments