From 9094923de96ca51a3a9b5c1bf68dda3732aebf71 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Sun, 6 Jul 2014 22:11:54 -0500 Subject: [PATCH] Debug statements --- Rakefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Rakefile b/Rakefile index 6c109d6b..753f7748 100644 --- a/Rakefile +++ b/Rakefile @@ -37,11 +37,14 @@ namespace :benchmark do current_branch = `git rev-parse --abbrev-ref HEAD`.strip # Create tmp branch for reference commit + puts "Creating branch tmp_#{reference}" git.branch("tmp_#{reference}").checkout git.reset_hard(reference) # RUN BENCHMARK + # Create tmp branch for compare commit + puts "Creating branch tmp_#{compare}" git.branch("tmp_#{compare}").checkout git.reset_hard(compare)