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
This commit is contained in:
parent
2d4b2c9e76
commit
f20b5b4d0d
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue