Commit f8035312 by Calen Pennington

Don't clean pyc file and install xmodule before all arbitrary rake commands

parent afb60f79
...@@ -378,7 +378,7 @@ end ...@@ -378,7 +378,7 @@ end
task :runserver => :lms task :runserver => :lms
desc "Run django-admin <action> against the specified system and environment" desc "Run django-admin <action> 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 => '') args.with_defaults(:env => 'dev', :system => 'lms', :options => '')
sh(django_admin(args.system, args.env, args.action, args.options)) sh(django_admin(args.system, args.env, args.action, args.options))
end end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment