Fix user and poster not showing in vouchers

This commit is contained in:
2026-08-29 11:37:54 +00:00
parent 4f89cd1161
commit 5cfa02a6ef
18 changed files with 163 additions and 33 deletions
+6 -6
View File
@@ -7,10 +7,10 @@ parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" || exit ; pwd -P )
cd "$parent_path/overlord" || exit
npx prettier --write src/app
npx ng lint --fix
cd "$parent_path/brewman" || exit
uvx ruff format .
uvx ruff check . # Lint all files in the current directory (and any subdirectories)
uvx bandit --recursive brewman
uvx bandit --recursive .
uvx safety check
cd "$parent_path/brewman" || exit
uv run ruff format .
uv run ruff check . # Lint all files in the current directory (and any subdirectories)
uv run bandit --recursive brewman
uv run bandit --recursive .
uv run safety check