From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Wed, 22 Oct 2025 14:43:44 +0200 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1vBYBs-00Abr3-0l for lore@lore.pengutronix.de; Wed, 22 Oct 2025 14:43:44 +0200 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1vBYBr-0003s1-P9; Wed, 22 Oct 2025 14:43:43 +0200 Received: from mail.thorsis.com ([217.92.40.78]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1vBYBn-0003rP-9V; Wed, 22 Oct 2025 14:43:40 +0200 Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id 339C31487417; Wed, 22 Oct 2025 14:43:38 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=thorsis.com; s=dkim; t=1761137018; h=from:subject:date:message-id:to:cc:mime-version:content-type: in-reply-to:references; bh=nxHVNwbEnyNSoOAXcY+q7ssdGSX4z5CFTSsacz4gNb0=; b=rpjWiui2Pgl2quu8sT7fHB4afzWFr6iP9H8cOZ6mp1dcPug6zjwj2D6EntH3GXFzSLDJF4 6CMJQgdP53xOAj/o67frEOM5CbUln2+k8HaQ0wrx8/XuM6n4UJQo7jenWsTX5D3pWSJKtG Jb6sBMVaJ2GrwkSBV2z2AKcB+c8Iwa729Sj9uF03lJXZhE3x48RBMM07N+qr2rLMYKts6K JjnYj0mQPWn5HYZWKmy7RGCQAR9VnLoMmNiMDbsFVheKNLYKduMA3L/2tYIP3O7q1NUW4T 9NjGrtYh9E2ctrW+cO2hdwtby3THVyd2q4ZtjLRFezd00s87p4AWgAWVAJ8XsQ== Date: Wed, 22 Oct 2025 14:43:33 +0200 From: Alexander Dahl To: Roland Hieber Message-ID: <20251022-unkind-frigidity-cf611c9231ae@thorsis.com> Mail-Followup-To: Roland Hieber , distrokit@pengutronix.de References: <20251022122947.241881-1-rhi@pengutronix.de> <20251022122947.241881-3-rhi@pengutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20251022122947.241881-3-rhi@pengutronix.de> User-Agent: Mutt/2.2.12 (2023-09-09) X-Last-TLS-Session-Version: TLSv1.3 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on metis.whiteo.stw.pengutronix.de X-Spam-Level: X-Spam-Status: No, score=-3.3 required=4.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_VALIDITY_RPBL_BLOCKED, RCVD_IN_VALIDITY_SAFE_BLOCKED,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.2 Subject: Re: [DistroKit] [PATCH 3/3] ci-prepare: fix indentation X-BeenThere: distrokit@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: DistroKit Mailinglist List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: distrokit@pengutronix.de Sender: "DistroKit" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: distrokit-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Hello Roland, Am Wed, Oct 22, 2025 at 02:29:12PM +0200 schrieb Roland Hieber: > Use tabs for indentation as anywhere else in the codebase. No functional > change indented. Pun indented? I mean intended? ;-) FWIW, this patch actually has white space change only, so: Reviewed-by: Alexander Dahl Greets Alex > > Signed-off-by: Roland Hieber > --- > ci-prepare | 30 +++++++++++++++--------------- > 1 file changed, 15 insertions(+), 15 deletions(-) > > diff --git a/ci-prepare b/ci-prepare > index 14337f14e46e..4bbeb668aa4b 100755 > --- a/ci-prepare > +++ b/ci-prepare > @@ -2,19 +2,19 @@ > # Note: this script is sourced by Jenkins, which has the auto-detected PTXdist > # version symlinked to ./p > case "${JOB_BASE_NAME}" in > - *v8a*) > - if [ -e selected_toolchain_r5 ]; then > - # store away the currently selected toolchain > - if [ -e selected_toolchain ]; then > - mv selected_toolchain selected_toolchain_ci_backup > - fi > - # create toolchain based on v7a platform, which is needed for R5 processor. > - ./p toolchain --platformconfig=configs/platform-v7a/platformconfig > - mv selected_toolchain selected_toolchain_r5 > - # restore the selected toolchain, if there was one before > - if [ -e selected_toolchain_ci_backup ]; then > - mv selected_toolchain_ci_backup selected_toolchain > - fi > - fi > - ;; > + *v8a*) > + if [ -e selected_toolchain_r5 ]; then > + # store away the currently selected toolchain > + if [ -e selected_toolchain ]; then > + mv selected_toolchain selected_toolchain_ci_backup > + fi > + # create toolchain based on v7a platform, which is needed for R5 processor. > + ./p toolchain --platformconfig=configs/platform-v7a/platformconfig > + mv selected_toolchain selected_toolchain_r5 > + # restore the selected toolchain, if there was one before > + if [ -e selected_toolchain_ci_backup ]; then > + mv selected_toolchain_ci_backup selected_toolchain > + fi > + fi > + ;; > esac > -- > 2.47.3 > >