Skip to content

Commit

Permalink
fix help message
Browse files Browse the repository at this point in the history
  • Loading branch information
C-Loftus committed Jan 30, 2025
1 parent d587eb9 commit 2e0d123
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,12 @@ def main():
subparsers.add_parser("down", help="Stop the Docker Compose services")

subparsers.add_parser(
"dagster-dev", help="Run dagster dev with local infrastructure"
"dagster-dev", help="Run dagster dev; will point to local dev infrastructure"
)

dev = subparsers.add_parser("dev", help="Run dagster dev with local infrastructure")
dev = subparsers.add_parser(
"dev", help="Run local infrastructure needed for dagster dev"
)
dev.add_argument(
"--build",
action="store_true",
Expand Down

0 comments on commit 2e0d123

Please sign in to comment.