From d7a74c2a98cc303b277d9917704839a2757de4e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Harold=20Gim=C3=A9nez?= Date: Fri, 28 Oct 2011 11:52:31 -0400 Subject: [PATCH] Remove all the REPO stuff we don't need any more --- Rakefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Rakefile b/Rakefile index 8c4f566dd..3bb3b2b62 100644 --- a/Rakefile +++ b/Rakefile @@ -20,11 +20,10 @@ namespace :test do end namespace :test_project do - desc 'Suspend a new project. Pass REPO=... to change the Suspenders repo (defaults to dir with Rakefile).' + desc 'Suspend a new project.' task :generate do FileUtils.rm_rf(TEST_PROJECT) - repo = (ENV['REPO'].to_s || "file://#{Dir.pwd}").to_s - sh "./bin/suspenders", 'create', TEST_PROJECT, repo + sh "./bin/suspenders", TEST_PROJECT end desc 'Remove a suspended project'