Skip to content

Commit 503d293

Browse files
committed
Fix HBRelease scope bug
Change-Id: I8222df9d43c7db2999403c8e6b18f98671836eb8 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/35970 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Reviewed-by: Stephen M. Cprek <smcprek@us.ibm.com> Reviewed-by: Elizabeth K. Liner <eliner@us.ibm.com> Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
1 parent f288201 commit 503d293

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/build/tools/hbRelease

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,13 +433,14 @@ sub execute_pre_release
433433
}
434434

435435

436+
my $feature = "";
436437
if($track eq "")
437438
{
438439
# CMVC open feature
439440
my $open_feature = "Feature -open -component $globals{component}";
440441
$open_feature .= " -remarks \"Hostboot Release - $level\" -verbose";
441442
# Get the Feature number from the output, should be the only numbers.
442-
my $feature = run_system_command($open_feature);
443+
$feature = run_system_command($open_feature);
443444
$feature =~ s/[^0-9]//g;
444445

445446
# CMVC assign feature

0 commit comments

Comments
 (0)