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