Fix helptag generation when the vimrc isnt loaded at startup

This commit is contained in:
Kevin MacMartin 2014-11-18 08:53:05 -05:00
parent 49a195bcf7
commit 26a209f4f5

4
update
View file

@ -244,13 +244,13 @@ fi
### BEGIN: GENERATE PLUGIN HELPTAGS ###
if [ $(type -P vim) ]; then
echo -n -e "${HEADINGCOLOUR} >> Generating Plugin Help:${RESETCOLOUR}"
timeout --foreground 2m vim -c "Helptags|qa!" &> /dev/null
timeout --foreground 2m vim -u "${PWD}/vimrc" -c "Helptags|qa!" &> /dev/null
if [ $? = 0 ]; then
echo -e "${SUCCESSCOLOUR} SUCCESS! ${RESETCOLOUR}"
else
reset -I
echo -e "${FAILCOLOUR} FAIL! ${RESETCOLOUR}"
error "vim -c \"Helptags|qa!\"" "Generating helpdocs for the submodules failed"
error "vim -u \"${PWD}/vimrc\" -c \"Helptags|qa!\"" "Generating helpdocs for the submodules failed"
fi
fi
### END: GENERATE PLUGIN HELPTAGS ###