9 lines
205 B
Plaintext
9 lines
205 B
Plaintext
|
#!/usr/bin/env ruby
|
||
|
require 'rubygems'
|
||
|
|
||
|
# Get library
|
||
|
libdir = File.join(File.dirname(__FILE__), '..', 'lib')
|
||
|
require File.expand_path('vagrant', libdir)
|
||
|
|
||
|
# Call the command
|
||
|
Vagrant::Command.execute(*ARGV)
|