From d758a0d7b9c13fb7c95053f623c2986fbb3c2c58 Mon Sep 17 00:00:00 2001 From: Nathan Weizenbaum Date: Mon, 6 Jul 2009 02:33:22 -0700 Subject: [PATCH] Have pages track stable (for now). --- Rakefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 307eb588..a8fbaf41 100644 --- a/Rakefile +++ b/Rakefile @@ -262,7 +262,7 @@ ensure end task :handle_update do - unless ENV["REF"] =~ %r{^refs/heads/(master|(?:haml|sass)-pages)$} + unless ENV["REF"] =~ %r{^refs/heads/(master|stable|(?:haml|sass)-pages)$} puts "#{'=' * 20} Ignoring rake handle_update REF=#{ENV["REF"].inspect}" next end @@ -279,6 +279,7 @@ task :handle_update do if branch == "master" sh %{rake release_edge --trace} + elsif branch == "stable" sh %{rake pages --trace PROJ=haml} sh %{rake pages --trace PROJ=sass} elsif branch =~ /^(haml|sass)-pages$/