diff options
author | Elizabeth Liner <eliner@us.ibm.com> | 2016-03-01 11:31:12 -0600 |
---|---|---|
committer | Matthew A. Ploetz <maploetz@us.ibm.com> | 2016-03-01 13:25:31 -0500 |
commit | dfa46b0cd43ac82181f29ce9bd76d21d6dc681e6 (patch) | |
tree | 1131b003aac5c8db0521127453c32210b3a1c999 | |
parent | aa4aaf88e06c6984408dc94579d3293992cd1f99 (diff) | |
download | talos-hostboot-dfa46b0cd43ac82181f29ce9bd76d21d6dc681e6.tar.gz talos-hostboot-dfa46b0cd43ac82181f29ce9bd76d21d6dc681e6.zip |
Fixing bug in auto hbRelease script
We were only locking and checking in one file because we
didn't process the list correctly. Instead this switches it to
one line of file with spaces separating.
Change-Id: I7d052781af7ebc9b672bd09c095001415dbec186
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/21533
Tested-by: Jenkins Server
Reviewed-by: Martin Gloff <mgloff@us.ibm.com>
Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
Reviewed-by: Stephen M. Cprek <smcprek@us.ibm.com>
Reviewed-by: Matthew A. Ploetz <maploetz@us.ibm.com>
-rwxr-xr-x | src/build/tools/hbRelease | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/build/tools/hbRelease b/src/build/tools/hbRelease index 5f8c285dc..2f1253bd7 100755 --- a/src/build/tools/hbRelease +++ b/src/build/tools/hbRelease @@ -45,13 +45,13 @@ my %globals = ( branch => "master", my $TOKEN = "!@#%^"; # List of files to check into CMVC separated by whitespace -my $CMVC_FILES = "src/hbfw/img/hostboot.bin ", - "src/hbfw/img/hostboot_extended.bin ", - "src/hbfw/img/hostboot_runtime.bin ", - "src/hbfw/img/makefile ", - "src/hbfw/fsp.tar ", - "src/hbfw/makefile ", - "src/hbfw/releaseNotes.html ", +my $CMVC_FILES = "src/hbfw/img/hostboot.bin ". + "src/hbfw/img/hostboot_extended.bin ". + "src/hbfw/img/hostboot_runtime.bin ". + "src/hbfw/img/makefile ". + "src/hbfw/fsp.tar ". + "src/hbfw/makefile ". + "src/hbfw/releaseNotes.html ". "src/hbfw/simics.tar"; # Directory to look up latest release tag for a specific release my $HOSTBOOT_GSA_HOME = "/gsa/ausgsa/home/h/o/hostboot"; |