From 29f79dfa75f305e3322e8f46bac1af5a8607be58 Mon Sep 17 00:00:00 2001 From: tbhaxor Date: Mon, 25 Feb 2019 16:45:52 +0530 Subject: [PATCH] :bug: fix --- completion/available/flutter.completion.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/completion/available/flutter.completion.bash b/completion/available/flutter.completion.bash index 6372dfe4..62befc82 100644 --- a/completion/available/flutter.completion.bash +++ b/completion/available/flutter.completion.bash @@ -1,5 +1,5 @@ #!/usr/bin/bash -if command -v flutter > /dev/null; then +if _command_exists flutter; then eval "$(flutter bash-completion)" fi