From 1733575efe879fc690827f376de2d7b63bf27c52 Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Mon, 9 Jan 2023 10:07:27 +1000 Subject: [PATCH] tasks.py: add .ruff_cache, result* to excludes --- tasks.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index cc7ef16..11a3086 100644 --- a/tasks.py +++ b/tasks.py @@ -8,7 +8,14 @@ from typing import Any, List from deploykit import DeployGroup, DeployHost from invoke import task -RSYNC_EXCLUDES = [".terraform", ".direnv", ".mypy-cache", ".git"] +RSYNC_EXCLUDES = [ + ".direnv", + ".git", + ".mypy-cache", + ".ruff_cache", + ".terraform", + "result*", +] def deploy_nixos(hosts: List[DeployHost]) -> None: