From: Ian Jackson Date: Fri, 18 Sep 2015 17:13:25 +0000 (+0100) Subject: cri-common: Add a missing semicolon X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=c298e9b641fb3f4667b5855bfc9039b59da94971;p=osstest.git cri-common: Add a missing semicolon 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 Acked-by: Ian Campbell --- diff --git a/cri-common b/cri-common index 17b916d..c874ff9 100644 --- a/cri-common +++ b/cri-common @@ -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 ;;