Merge remote-tracking branch 'blastrock/go-tools-error'

This commit is contained in:
Maxime Coste 2017-08-31 11:21:44 +07:00
commit 1e4e39ffd2

View File

@ -6,9 +6,11 @@
# - jq for json deserializaton # - jq for json deserializaton
%sh{ %sh{
if ! jq --version > /dev/null 2>&1; then for dep in gocode goimports gogetdoc jq; do
echo 'echo -debug %{Dependency unmet: jq, please install it to use go-tools}' if ! command -v $dep > /dev/null 2>&1; then
fi echo "echo -debug %{Dependency unmet: $dep, please install it to use go-tools}"
fi
done
} }
# Auto-completion # Auto-completion