MarcWeber / vim-addon-manager

manage and install vim plugins (including their dependencies) in a sane way. If you have any trouble contact me. Usually I reply within 24 hours
Other
660 stars 59 forks source link

unable to update activated addons #103

Closed bartlomiejdanek closed 11 years ago

bartlomiejdanek commented 11 years ago
Error detected while processing function vam#install#Update..vam#install#UpdateAddon..vam#install#Checkout..vam#utils#Unpack:
line  106:
E605: Exception not caught: EXCEPTION_UNPACK: don't know how to unpack /Users/bard/projects/social/vim-configuration/bundle/vim-addon-manager/archive/howto-downnload-vim-addon-manager.txt
Error detected while processing function vam#install#Update..vam#install#UpdateAddon..vam#install#Checkout:
line   24:
E171: Missing :endif
Error detected while processing function vam#install#Update..vam#install#UpdateAddon:
line   60:
E171: Missing :endif
Error detected while processing function vam#install#Update:
line   16:
E170: Missing :endfor
Press ENTER or type command to continue

This error appears when I try to update my bundles... (I call UpdateActivatedAddons)

Vim config is available here https://github.com/bartekd/vim-configuration

MarcWeber commented 11 years ago

Reinstall VAM the way its recommended in the manual section 2. Its enough to clone vim-addon-manager into place using git - this should happen automatically if you follow the recommended setup.

You have this issue because you installed VAM in a bogues way: You somehow got the .txt file from the vim site which only tells you how to install it - because keeping www.vim.org up to date was too much work all the time.

ZyX-I commented 11 years ago

You have this issue because you installed VAM in a bogues way: You somehow got the .txt file from the vim site which only tells you how to install it - because keeping www.vim.org up to date was too much work all the time.

Wondering what prevents you from using a post-commit hook (since there is no outgoing hook in git). Since some time I generate README file, wiki page on mercurial site (aurum) and www.vim.org page from the help file in one turn with other release-related jobs in addition (except www.vim.org, it is done only on release) to doing this before each commit (pre-commit hook). Though I do not do this on each commit nothing can prevent it from being done.

bartlomiejdanek commented 11 years ago

@MarcWeber thanks for your tip!