fix: missing working directory parameter in script (#10226)

pull/12372/head
shisaru292 1 year ago committed by Joel
parent 181eb6038f
commit 352c1fc370

@ -9,10 +9,10 @@ if ! command -v ruff &> /dev/null || ! command -v dotenv-linter &> /dev/null; th
fi
# run ruff linter
ruff check --fix ./api
poetry run -C api ruff check --fix ./api
# run ruff formatter
ruff format ./api
poetry run -C api ruff format ./api
# run dotenv-linter linter
dotenv-linter ./api/.env.example ./web/.env.example
poetry run -C api dotenv-linter ./api/.env.example ./web/.env.example

Loading…
Cancel
Save