From c5d2a9e530bad53cddc2e9443ecc3a83d773f4a5 Mon Sep 17 00:00:00 2001 From: Aaron Fiore Date: Wed, 4 Feb 2026 17:00:58 -0800 Subject: [PATCH] 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 --- .gitea/workflows/dfi.bash | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/dfi.bash b/.gitea/workflows/dfi.bash index 0636007..4f6e5f3 100755 --- a/.gitea/workflows/dfi.bash +++ b/.gitea/workflows/dfi.bash @@ -53,7 +53,8 @@ function host::clean() # Remove default `dfi` layout local _paths _paths+=(".bashrc") - _paths+=(".config/docker-finance.d") + _paths+=(".config") + _paths+=(".docker") _paths+=("docker-finance") _paths+=("finance-flow") _paths+=("plugins")