Skip to content

Commit c6beb98

Browse files
authored
Fix USERPROFILE env var portability and docs notation
1 parent abefb8f commit c6beb98

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

docs/reference/workflows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Example:
2020
specify workflow run speckit -i spec="Build a kanban board with drag-and-drop task management" -i scope=full
2121
```
2222

23-
> **Note:** Most workflow commands require a project already initialized with `specify init`. The exception is `specify workflow run <local-file.yml|yaml>`, which can run outside a project; in that case, run state is stored under the current directory's `.specify/workflows/runs/<run_id>/`.
23+
> **Note:** Most workflow commands require a project already initialized with `specify init`. The exception is `specify workflow run <local-file.{yml,yaml}>`, which can run outside a project; in that case, run state is stored under the current directory's `.specify/workflows/runs/<run_id>/`.
2424
2525
## Resume a Workflow
2626

tests/test_workflow_run_without_project.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ def test_workflow_run_yaml_with_tilde_and_uppercase_suffix(self, tmp_path, monke
5858
home_dir = tmp_path / "home"
5959
home_dir.mkdir()
6060
monkeypatch.setenv("HOME", str(home_dir))
61+
monkeypatch.setenv("USERPROFILE", str(home_dir))
6162

6263
workflow_file = home_dir / "test-workflow.YML"
6364
workflow_content = {

0 commit comments

Comments
 (0)