Uses builtin check rather than env var
Casey Chance committed
Apr 30, 2020 at 10:49 UTC
4d97e3746ac8e36d8e1c77f26a80cecdc80dba60
1 file changed
+3
-3
misc/completion/ipfs-completion.bash
+3
-3
@@ -1,9 +1,9 @@
1
_do_comp()
2
{
3
- if [ -n "$ZSH_VERSION" ]; then
4
- complete $@
5
- else
3
+ if [[ $(type compopt) == *"builtin" ]]; then
4
compopt $@
5
+ else
6
+ complete $@
7
fi
8
}
9