From b30964c9e6c12bf1b191d4c3ba12b9dd0e39cb06 Mon Sep 17 00:00:00 2001 From: Norman Clarke Date: Fri, 27 Apr 2012 21:54:48 -0300 Subject: [PATCH] Remove pages task; this is in a separate repo now --- Rakefile | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/Rakefile b/Rakefile index 3468b102..b2348ba9 100644 --- a/Rakefile +++ b/Rakefile @@ -51,27 +51,6 @@ begin rescue LoadError end -task :pages do - puts "#{'=' * 50} Running rake pages" - ensure_git_cleanup do - sh %{git checkout haml-pages} - sh %{git reset --hard origin/haml-pages} - - Dir.chdir("/var/www/haml-pages") do - sh %{git fetch origin} - - sh %{git checkout stable} - sh %{git reset --hard origin/stable} - - sh %{git checkout haml-pages} - sh %{git reset --hard origin/haml-pages} - sh %{rake build --trace} - sh %{mkdir -p tmp} - sh %{touch tmp/restart.txt} - end - end -end - desc <