tasks.py: add .ruff_cache, result* to excludes
This commit is contained in:
parent
93537f3b14
commit
1733575efe
1 changed files with 8 additions and 1 deletions
9
tasks.py
9
tasks.py
|
@ -8,7 +8,14 @@ from typing import Any, List
|
||||||
from deploykit import DeployGroup, DeployHost
|
from deploykit import DeployGroup, DeployHost
|
||||||
from invoke import task
|
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:
|
def deploy_nixos(hosts: List[DeployHost]) -> None:
|
||||||
|
|
Loading…
Add table
Reference in a new issue