Skip to content

Commit

Permalink
fix wording on stdout -> fifo check
Browse files Browse the repository at this point in the history
  • Loading branch information
robwaz committed Sep 2, 2024
1 parent a97a226 commit 0665225
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chio.py
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ def add_argument(parser, arg, **kwargs):
add_argument(_parser, "--check_stdout_path", type=str, nargs='?', help="the challenge will check that output is redirected to a specific file path")
add_argument(_parser, "--check_stderr_path", type=str, nargs='?', help="the challenge will check that error output is redirected to a specific file path")
add_argument(_parser, "--check_stdin_fifo", action='store_true', help="the challenge will make sure that stdin is redirected from a fifo")
add_argument(_parser, "--check_stdout_fifo", action='store_true', help="the challenge will make sure that stdout is a redirected from fifo")
add_argument(_parser, "--check_stdout_fifo", action='store_true', help="the challenge will make sure that stdout is redirected to a fifo")

# other process stuff
add_argument(_parser, "--cwd", type=str, nargs='?', help="the challenge will check that it is running in a specific current working directory")
Expand Down

0 comments on commit 0665225

Please sign in to comment.