Merge "Fix typo in sync script string container name comparison"

This commit is contained in:
Zuul 2020-04-27 17:36:33 +00:00 committed by Gerrit Code Review
commit c358936827
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ for LINE in $(cat ${jobs_file}); do
container_list=`$CLI ps --format={% raw %}"{{.Names}}"{% endraw %} --filter="name=$CONTAINER_NAME"`
for name in ${container_list};
do
if [ "x$name" = "x$CONTAINER_NAME"];
if [ "x$name" = "x$CONTAINER_NAME" ];
then
start_container=no
break