koron / vim-kaoriya

Vim+kaoriya build system

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ビルドスクリプトが途中で止まる

koron opened this issue · comments

何度かEnterを押さないと進まない

helptags 作ってるところでとまっているっぽい

オプション -n-nes に変更 + exit status を無視するように。

Before

	"$(INSTALL_DIR)\bin\vim.exe" -n -u NONE -U NONE --noplugin \
		-c "helptags $(VIM_DIST_DIR)\plugins\vimdoc-ja\doc | quit"

After

	-"$(INSTALL_DIR)\bin\vim.exe" -nes -u NONE -U NONE --noplugin \
		-c "helptags $(VIM_DIST_DIR)\plugins\vimdoc-ja\doc | quit"

fixed.