git pull in the webifier
authorJason Etheridge <jason@esilibrary.com>
Thu, 19 Sep 2013 14:56:34 +0000 (10:56 -0400)
committerJason Etheridge <jason@esilibrary.com>
Thu, 19 Sep 2013 14:56:34 +0000 (10:56 -0400)
Signed-off-by: Jason Etheridge <jason@esilibrary.com>
qa/test_output_webifier.pl

index 264d884..6a38254 100755 (executable)
@@ -163,9 +163,9 @@ sub branch_tips {
     my $prev_evergreen_tip_hash = `cat prev_evergreen_tip.hash`;
     chop $prev_evergreen_tip_hash;
     $html .= "<h2>OpenSRF commits since last build:</h2>\n<pre>";
-    $html .= `cd ~/git/OpenSRF/ ; git fetch 2> /dev/null ; git log --format=oneline $prev_opensrf_tip_hash..$opensrf_tip_hash`;
+    $html .= `cd ~/git/OpenSRF/ ; git fetch 2> /dev/null ; git pull 2> /dev/null ; git log --format=oneline $prev_opensrf_tip_hash..$opensrf_tip_hash`;
     $html .= "</pre><h2>Evergreen commits since last build:</h2>\n<pre>";
-    $html .= `cd ~/git/Evergreen/ ; git fetch 2> /dev/null ; git log --format=oneline $prev_evergreen_tip_hash..$evergreen_tip_hash`;
+    $html .= `cd ~/git/Evergreen/ ; git fetch 2> /dev/null ; git pull 2> /dev/null ; git log --format=oneline $prev_evergreen_tip_hash..$evergreen_tip_hash`;
     `echo $opensrf_tip_hash > prev_opensrf_tip.hash`;
     `echo $evergreen_tip_hash > prev_evergreen_tip.hash`;
     $html .= "</pre>\n";