tasks.py: add .ruff_cache, result* to excludes

This commit is contained in:
zowoq 2023-01-09 10:07:27 +10:00
parent 93537f3b14
commit 1733575efe

View file

@ -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: