Skip to content

Commit

Permalink
Make acceptance tasks easier to run
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellh committed Jan 9, 2012
1 parent 8aa4e58 commit 3fdc3be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/acceptance.rake
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace :acceptance do
desc "Downloads the boxes required for running the acceptance tests."
task :boxes, :directory do |t, args|
# Create the directory where the boxes will be downloaded
box_dir = Pathname.new(args[:directory] || File.expand_path("../../test/tmp/boxes", __FILE__))
box_dir = Pathname.new(args[:directory] || File.expand_path("../../boxes", __FILE__))
box_dir.mkpath
puts "Boxes will be placed in: #{box_dir}"

Expand Down Expand Up @@ -76,7 +76,7 @@ namespace :acceptance do
require File.expand_path('../../test/support/tempdir', __FILE__)

# Get the directory for the boxes
box_dir = Pathname.new(args[:box_dir] || File.expand_path("../../test/tmp/boxes", __FILE__))
box_dir = Pathname.new(args[:box_dir] || File.expand_path("../../boxes", __FILE__))

# Generate the binstubs for the Vagrant binary
tempdir = Tempdir.new
Expand Down

0 comments on commit 3fdc3be

Please sign in to comment.