From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Tue, 08 Nov 2022 09:40:49 +0100 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1osKA5-001DVk-PB for lore@lore.pengutronix.de; Tue, 08 Nov 2022 09:40:49 +0100 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1osKA4-0000TV-WC; Tue, 08 Nov 2022 09:40:49 +0100 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1osK9q-0000T7-HG; Tue, 08 Nov 2022 09:40:34 +0100 Received: from [2a0a:edc0:0:900:1d::77] (helo=ptz.office.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1osK9o-0031Fy-UM; Tue, 08 Nov 2022 09:40:33 +0100 Received: from ukl by ptz.office.stw.pengutronix.de with local (Exim 4.94.2) (envelope-from ) id 1osK9o-00F98N-PN; Tue, 08 Nov 2022 09:40:32 +0100 From: =?UTF-8?q?Uwe=20Kleine-K=C3=B6nig?= To: ptxdist@pengutronix.de Date: Tue, 8 Nov 2022 09:40:30 +0100 Message-Id: <20221108084030.113565-1-u.kleine-koenig@pengutronix.de> X-Mailer: git-send-email 2.38.1 MIME-Version: 1.0 X-Developer-Signature: v=1; a=openpgp-sha256; l=889; i=u.kleine-koenig@pengutronix.de; h=from:subject; bh=bye/9QfTYdgGd6la/wbjYiRzqCp3ZvtQUTARiflNaYQ=; b=owEBbQGS/pANAwAKAcH8FHityuwJAcsmYgBjahX6NI1ECa3CH7nRqGjEuaUsptie/2FQKfNuPkMW yZE9yACJATMEAAEKAB0WIQR+cioWkBis/z50pAvB/BR4rcrsCQUCY2oV+gAKCRDB/BR4rcrsCXPuCA CL3TLi9TYdSoX2vNZItzSS3MRTMt4lj2z9DxFAM6FTgvcj7thzQmk4W8RR+92DV0H6HpAFK9BMNVMc GFfnNpaDmIF3zSpnUS7/BoseWQP+o9san5FtF8L6928cZS/dGNsU767QcyuLB8r+LFVQSg3PYJvzY2 oxFfMxvGl1/1Qk5UB4QNXWUaSZGZ+uMcpHGjtKCcbjZMvga1vbGLdTFHcTxTuVKQJJ3u+tKvbnxJRm WbyFAZArYhg19QRRbbbxSO81pD4dHFDI+hXIKQPrgTVBMhWKK9XfWEG1XTx3hrP3eCuYFvFkXcyklX pemI6Muy+41SXjTTUVz19y2ooSfNmp X-Developer-Key: i=u.kleine-koenig@pengutronix.de; a=openpgp; fpr=0D2511F322BFAB1C1580266BE2DCDD9132669BD6 Content-Transfer-Encoding: 8bit Subject: [ptxdist] [PATCH] clean: Fix a double whitespace X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false Fixes: c98e2ba9594c ("detect patch changes and reextract when needed") --- scripts/lib/ptxd_make_clean.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib/ptxd_make_clean.sh b/scripts/lib/ptxd_make_clean.sh index a3a7cde797bc..4bfce603c94a 100644 --- a/scripts/lib/ptxd_make_clean.sh +++ b/scripts/lib/ptxd_make_clean.sh @@ -18,7 +18,7 @@ ptxd_make_clean() { if [ -z "${PTXCONF_SETUP_AUTO_EXTRACT}" ]; then ptxd_bailout "Refusing to delete existing source" \ "$(ptxd_print_path "${directory}")" \ - "Delete anyways with --force or skip extract with --dirty." + "Delete anyways with --force or skip extract with --dirty." elif [ -z "${PTXDIST_FORCE}" -a -d "${directory}/.git" ]; then ptxd_bailout "Refusing to delete existing source with git" \ "$(ptxd_print_path "${directory}")" \ -- 2.38.1