From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id 1oJWJI9V4mKr2BsAWB0awg (envelope-from ) for ; Thu, 28 Jul 2022 05:23:27 -0400 Received: by simark.ca (Postfix, from userid 112) id 88F3F1E5EA; Thu, 28 Jul 2022 05:23:27 -0400 (EDT) Authentication-Results: simark.ca; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.a=rsa-sha256 header.s=default header.b=kZh4yGVp; dkim-atps=neutral X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RDNS_DYNAMIC,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 Received: from sourceware.org (ip-8-43-85-97.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 383391E5EA for ; Thu, 28 Jul 2022 05:23:27 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 5B1A6385AE5B for ; Thu, 28 Jul 2022 09:23:26 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5B1A6385AE5B DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1659000206; bh=cu+WzgmPUhLWvzo6oSIpbt3s/TSiLw7s5hQyxNYHWzU=; h=Date:To:Subject:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:Cc:From; b=kZh4yGVpCGltNRDcfISNuEtVnrwtEybMpyi+0wyABuwpwMzywP8E2oI0UH1kiQaQX 53hXbsaextzKZBBFsPi6Efxcj7MQypx13q/2giJiZmkA8z2gDd/9RDz6h2EU8zJaxz wLZjXKnhKYriJXNlTtoymK8kTm+Bm4rQ0jXhcSys= Received: from szxga02-in.huawei.com (szxga02-in.huawei.com [45.249.212.188]) by sourceware.org (Postfix) with ESMTPS id 234E3385AE46 for ; Thu, 28 Jul 2022 09:23:07 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 234E3385AE46 Received: from dggpeml500022.china.huawei.com (unknown [172.30.72.54]) by szxga02-in.huawei.com (SkyGuard) with ESMTP id 4LtlTB1ybNzWfnX for ; Thu, 28 Jul 2022 17:19:10 +0800 (CST) Received: from dggpeml500002.china.huawei.com (7.185.36.158) by dggpeml500022.china.huawei.com (7.185.36.66) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.24; Thu, 28 Jul 2022 17:22:48 +0800 Received: from [10.174.179.208] (10.174.179.208) by dggpeml500002.china.huawei.com (7.185.36.158) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.24; Thu, 28 Jul 2022 17:22:48 +0800 Message-ID: <375f9654-9c01-6bd3-7134-6865f49b69eb@huawei.com> Date: Thu, 28 Jul 2022 17:22:47 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Thunderbird/91.4.1 To: Subject: [PATCH] use return instead of continue to avoid shellcheck error Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Originating-IP: [10.174.179.208] X-ClientProxiedBy: dggems703-chm.china.huawei.com (10.3.19.180) To dggpeml500002.china.huawei.com (7.185.36.158) X-CFilter-Loop: Reflected X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: yaowenbin via Gdb-patches Reply-To: yaowenbin Cc: "hewenliang \(C\)" , linfeilong@huawei.com Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" Signed-off-by: yaowenbin --- gdb/gdb_mbuild.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb/gdb_mbuild.sh b/gdb/gdb_mbuild.sh index 47403a7..51d2853 100755 --- a/gdb/gdb_mbuild.sh +++ b/gdb/gdb_mbuild.sh @@ -171,7 +171,7 @@ fail () if test "${keepgoing}" != "" then #exit 1 - continue + return 1 else kill $$ exit 1 -- 2.23.0