From 3fdc3bee4bad54ecc485f626e8a5febd0a5fa018 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 8 Jan 2012 23:04:14 -0800 Subject: [PATCH] Make acceptance tasks easier to run --- tasks/acceptance.rake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/acceptance.rake b/tasks/acceptance.rake index af7a75ec9..2175bb0d3 100644 --- a/tasks/acceptance.rake +++ b/tasks/acceptance.rake @@ -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}" @@ -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