From f80353121c36341f941cb9b0e8aab32fa1674ee9 Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Tue, 16 Apr 2013 07:49:52 -0400 Subject: [PATCH] Don't clean pyc file and install xmodule before all arbitrary rake commands --- rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rakefile b/rakefile index 6158fd1c77..aa9b131396 100644 --- a/rakefile +++ b/rakefile @@ -378,7 +378,7 @@ end task :runserver => :lms desc "Run django-admin against the specified system and environment" -task "django-admin", [:action, :system, :env, :options] => [:predjango] do |t, args| +task "django-admin", [:action, :system, :env, :options] do |t, args| args.with_defaults(:env => 'dev', :system => 'lms', :options => '') sh(django_admin(args.system, args.env, args.action, args.options)) end