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";