]> xenbits.xensource.com Git - osstest.git/commitdiff
cri-common: Add a missing semicolon
authorIan Jackson <ian.jackson@eu.citrix.com>
Fri, 18 Sep 2015 17:13:25 +0000 (18:13 +0100)
committerIan Jackson <Ian.Jackson@eu.citrix.com>
Tue, 22 Sep 2015 15:34:27 +0000 (16:34 +0100)
This is not technically needed as bash interprets `a=1 b=2' as
settings of both a and b.  But it's not idiomatic sh within osstest to
use this syntax.

No functional change.

Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
Acked-by: Ian Campbell <ian.campbell@citrix.com>
cri-common

index 17b916dd15166d5a26a188a09b656ec65653a2fd..c874ff913d2a9e84d78cc9a9b91e72e60f3ec932 100644 (file)
@@ -68,7 +68,7 @@ select_xenbranch () {
        case "$branch" in
        xen-unstable-smoke)     tree=xen;       xenbranch=$branch; qemuubranch=qemu-upstream-unstable;;
        xen-*)                  tree=xen;       xenbranch=$branch ;;
-       qemu-mainline)          tree=qemuu;     xenbranch=xen-unstable  qemuubranch=qemu-mainline;;
+       qemu-mainline)          tree=qemuu;     xenbranch=xen-unstable; qemuubranch=qemu-mainline;;
         qemu-upstream-*)    tree=qemuu; xenbranch=xen-${branch#qemu-upstream-};;
        linux)                  tree=linux;     xenbranch=xen-unstable ;;
        linux-*)                tree=linux;     xenbranch=xen-unstable ;;