removed the echo tag I had on the tags generation command for testing

This commit is contained in:
Kevin 2014-04-05 04:57:08 -04:00
parent 575643d6f9
commit ce68a5b2e2

View file

@ -1,3 +1,3 @@
#!/usr/bin/env bash
[[ `type -P ctags` ]] && echo ctags -R -f ~/.vim/tags /usr/include /usr/local/include $@ || echo "Can't find the ctags binary in $PATH"
[[ `type -P ctags` ]] && ctags -R -f ~/.vim/tags /usr/include /usr/local/include $@ || echo "Can't find the ctags binary in $PATH"