Skip to content

Commit 5c2bcf4

Browse files
nathanjmcdougallseddonym
authored andcommitted
Use quoted @echo calls consistently in justfile
This is a follow-up to enabling Powershell support, to prevent hanging/waiting for user input: ``` cmdlet Write-Output at command pipeline position 1 Supply values for the following parameters: InputObject[0]: ```
1 parent 9256ddb commit 5c2bcf4

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

justfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ update-snapshots:
5151
[working-directory: 'rust']
5252
format-rust:
5353
@cargo fmt
54-
@echo Formatted Rust code.
54+
@echo 'Formatted Rust code.'
5555

5656
# Format the Python code.
5757
[group('formatting')]
5858
format-python:
5959
@uv run ruff format
60-
@echo Formatted Python code.
60+
@echo 'Formatted Python code.'
6161

6262
# Format all code.
6363
[group('formatting')]
@@ -68,13 +68,13 @@ format:
6868
# Lint Python code.
6969
[group('linting')]
7070
lint-python:
71-
@echo Running ruff format...
71+
@echo 'Running ruff format...'
7272
@uv run ruff format --check
73-
@echo Running ruff check...
73+
@echo 'Running ruff check...'
7474
@uv run ruff check
75-
@echo Running mypy...
75+
@echo 'Running mypy...'
7676
@uv run mypy src/grimp tests
77-
@echo Running Import Linter...
77+
@echo 'Running Import Linter...'
7878
@uv run lint-imports
7979

8080
# Lint Rust code using cargo fmt and clippy
@@ -98,11 +98,11 @@ autofix-python:
9898
# Run linters.
9999
[group('linting')]
100100
lint:
101-
@echo Linting Python...
101+
@echo 'Linting Python...'
102102
@just lint-python
103-
@echo Linting Rust...
103+
@echo 'Linting Rust...'
104104
@just lint-rust
105-
@echo
105+
@echo ''
106106
@echo '👍 {{GREEN}} Linting all good.{{NORMAL}}'
107107

108108
# Build docs.

0 commit comments

Comments
 (0)