docs: add -p to mkdir command#33795
Conversation
Without `-p`, I experience this on a mac. ```bash $ mkdir src/dagster_quickstart/defs/data && touch src/dagster_quickstart/defs/data/sample_data.csv => mkdir: src/dagster_quickstart/defs: No such file or directory ```
Greptile SummaryThis PR fixes the quickstart documentation by adding the Confidence Score: 5/5Safe to merge — single-line docs fix with no code changes. The change is a minimal, correct documentation fix. Adding No files require special attention.
|
| Filename | Overview |
|---|---|
| docs/docs/getting-started/quickstart.md | Adds -p flag to mkdir so nested directories are created correctly, and splits the command across two lines for readability. |
Sequence Diagram
sequenceDiagram
participant User
participant Shell
Note over User,Shell: Before fix (no -p flag)
User->>Shell: mkdir src/dagster_quickstart/defs/data
Shell-->>User: Error: No such file or directory
Note over User,Shell: After fix (with -p flag)
User->>Shell: mkdir -p src/dagster_quickstart/defs/data
Shell-->>User: Creates all intermediate dirs
User->>Shell: touch src/dagster_quickstart/defs/data/sample_data.csv
Shell-->>User: File created successfully
Reviews (1): Last reviewed commit: "docs: add -p to mkdir command" | Re-trigger Greptile
Summary & Motivation
Without
-p, I experience this on a mac.Test Plan
Changelog