diff options
author | Nauman_Ahad <Nauman_Ahad@dell.com> | 2015-11-18 17:36:22 +0500 |
---|---|---|
committer | Nauman_Ahad <Nauman_Ahad@dell.com> | 2015-11-18 17:36:22 +0500 |
commit | d927266e701ff450e18463ae59333fb03542bcac (patch) | |
tree | 9c7b05abe952ff0c36327be4b8fda86f79b3a25f | |
parent | e0b53c0bc1f6f3d3361cf820cd0736e71abf6ecb (diff) |
Jenkins Job for QTIP dhrystone serial and ssl parallel
Removed if condition bug due to missing whitespaces
JIRA:QTIP-7
Change-Id: I770097d171333f7eb17e81d7d0118f093623e2b5
Signed-off-by: Nauman_Ahad <Nauman_Ahad@dell.com>
-rw-r--r-- | jjb/qtip/qtip.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jjb/qtip/qtip.yml b/jjb/qtip/qtip.yml index 4bef7c544..e87408885 100644 --- a/jjb/qtip/qtip.yml +++ b/jjb/qtip/qtip.yml @@ -289,7 +289,7 @@ builders: - shell: | #! /bin/bash - if [[ ! -f $HOME/opnfv-openrc.sh]]; then + if [[ ! -f $HOME/opnfv-openrc.sh ]]; then echo "Unable to access file $HOME/opnfv-openrc.sh" exit 1 fi @@ -305,7 +305,7 @@ builders: - shell: | #!/bin/bash - if [[ ! -f $HOME/opnfv-openrc.sh]]; then + if [[ ! -f $HOME/opnfv-openrc.sh ]]; then echo "Unable to access file $HOME/opnfv-openrc.sh" exit 1 fi |