Skip to content

Commit

Permalink
Fix HBRelease scope bug
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
wghoffa committed Feb 6, 2017
1 parent f288201 commit 503d293
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/build/tools/hbRelease
Expand Up @@ -433,13 +433,14 @@ sub execute_pre_release
}


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

# CMVC assign feature
Expand Down

0 comments on commit 503d293

Please sign in to comment.