This commit is contained in:
rhelmer%mozilla.com 2007-02-06 05:08:40 +00:00
Родитель 0a00b4a2de
Коммит 69e0e8d69c
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -86,7 +86,7 @@ sub Execute {
while ($currentStep < $numSteps) {
my $stepName = $subSteps[$currentStep];
eval {
$this->Log('Tag running substep' . $stepName);
$this->Log(msg => 'Tag running substep' . $stepName);
my $step = "Bootstrap::Step::Tag::$stepName"->new();
$step->Execute();
};
@ -113,7 +113,7 @@ sub Verify {
while ($currentStep < $numSteps) {
my $stepName = $subSteps[$currentStep];
eval {
$this->Log('Tag running substep' . $stepName);
$this->Log(msg => 'Tag running substep' . $stepName);
my $step = "Bootstrap::Step::Tag::$stepName"->new();
$step->Verify();
};