From f20b5b4d0ded4a870e5795d4fe277af61f20c0e3 Mon Sep 17 00:00:00 2001 From: Lyndon Brown Date: Tue, 28 Apr 2020 16:42:29 +0100 Subject: [PATCH] clean: fix missing 'noauto' param for substage execution these should be bypassing the possibility of running the auto script surely, just like how this is done for `--all`, otherwise you pass through the auto file twice. Gbp-Dch: Ignore --- scripts/build/clean | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/build/clean b/scripts/build/clean index 786046ac0..34ccf8023 100755 --- a/scripts/build/clean +++ b/scripts/build/clean @@ -106,13 +106,13 @@ for ARGUMENT in "${@}"; do ;; --remove) - "${0}" --all + "${0}" noauto --all rm -rf cache/packages.* ;; --purge) - "${0}" --all - "${0}" --cache + "${0}" noauto --all + "${0}" noauto --cache if [ -e auto/config ] then