repo: gitea: workflows: dfi: impl: add paths to remove (host::clean)

- Host's (guest VM's) `act_runner` does not use (nor create)
  ${HOME}/.config for any other purpose other than for `dfi`'s
  docker-finance.d

- ${HOME}/.docker is removed to keep a clean workspace
This commit is contained in:
2026-02-04 17:00:58 -08:00
parent 56c7686e37
commit c5d2a9e530

View File

@@ -53,7 +53,8 @@ function host::clean()
# Remove default `dfi` layout # Remove default `dfi` layout
local _paths local _paths
_paths+=(".bashrc") _paths+=(".bashrc")
_paths+=(".config/docker-finance.d") _paths+=(".config")
_paths+=(".docker")
_paths+=("docker-finance") _paths+=("docker-finance")
_paths+=("finance-flow") _paths+=("finance-flow")
_paths+=("plugins") _paths+=("plugins")