Created
September 26, 2012 20:16
-
-
Save ejschmitt/3790307 to your computer and use it in GitHub Desktop.
Install vim on heroku
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd /tmp && curl -O ftp://ftp.vim.org/pub/vim/unix/vim-7.3.tar.bz2 && bunzip2 -c vim-7.3.tar.bz2 | tar -xf - && cd vim73 && ./configure --prefix=/tmp && make install && echo PATH='$PATH:/tmp/bin/' > path && source path |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
why not
export PATH='$PATH:/tmp/bin'
instead of creating the script and sourcing it?