mik-laj commented on a change in pull request #10677:
URL: https://github.com/apache/airflow/pull/10677#discussion_r483255401
##########
File path: airflow/cli/cli_parser.py
##########
@@ -142,6 +142,10 @@ def positive_int(value):
("-e", "--end-date"),
help="Override end_date YYYY-MM-DD",
type=parsedate)
+ARG_OUTPUT_PATH = Arg(
+ ("-o", "--output-path",),
+ help="The output for generated yaml files",
+ default="/tmp/airflow_yaml_output/")
Review comment:
Wouldn't it be better to write in Current Working Directory? This will
provide easier access to these files. Most linux utilities use CWD by default.
```
tar xf pathtoarchive/archive.tar
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]