1
0
mirror of https://github.com/captn3m0/dotfiles.git synced 2024-07-06 14:09:18 +00:00
dotfiles/files/vim/.vim/bundle/command-t/compile-test.sh
2014-06-08 15:02:00 +05:30

11 lines
250 B
Bash
Executable File

#!/bin/sh -e
cd ruby/command-t
for RUBY_VERSION in $(ls ~/.multiruby/install); do
echo "$RUBY_VERSION: building"
export PATH=~/.multiruby/install/$RUBY_VERSION/bin:$PATH
ruby extconf.rb
make clean
make
echo "$RUBY_VERSION: finished"
done