aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorAnton Bobov <abobov@gmail.com>2016-01-20 23:56:35 +0500
committerAnton Bobov <abobov@gmail.com>2016-01-20 23:56:35 +0500
commitca48256207351924ead6b0693b9c22a97ecc93ad (patch)
treeff8de9c61c4d7a850972883ce67c155547f87dcf /install.sh
parente0af61bac3b4b147b5fcadaf771621b475545c5f (diff)
Fix install script.
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/install.sh b/install.sh
index affdf12..2684bd0 100755
--- a/install.sh
+++ b/install.sh
@@ -44,7 +44,9 @@ after_install() {
if ! which ctags >/dev/null 2>&1; then
echo 'No ctags.' >&2
fi
- cd $HOME/.vim/bundle/Command-T/ruby/command-t && make >/dev/null
+ if ! which ag >/dev/null 2>&1; then
+ echo 'No ag.' >&2
+ fi
}
check_override() {