From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Jackson Subject: [OSSTEST PATCH 26/26] cri-common: Add a missing semicolon Date: Fri, 18 Sep 2015 18:50:16 +0100 Message-ID: <1442598616-2884-13-git-send-email-ian.jackson@eu.citrix.com> References: <1442598616-2884-1-git-send-email-ian.jackson@eu.citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta3.messagelabs.com ([195.245.230.39]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1Zcznt-0004Gb-Ei for xen-devel@lists.xenproject.org; Fri, 18 Sep 2015 17:50:33 +0000 In-Reply-To: <1442598616-2884-1-git-send-email-ian.jackson@eu.citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xenproject.org Cc: Ian Jackson , Ian Campbell List-Id: xen-devel@lists.xenproject.org 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 --- cri-common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cri-common b/cri-common index 45545d8..d73dc4b 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-xen-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 ;; -- 1.7.10.4