Skip to content

Commit

Permalink
Adds output dir to report function
Browse files Browse the repository at this point in the history
  • Loading branch information
catusphan committed Dec 18, 2024
1 parent d6d8352 commit acf6ae8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Report the results
run: |
ls -R -l $OUTPUT_DIR &&
uv run python ./bin/dict_summary.py --dict_dir=$INPUT_DIR --read_only=no
uv run python ./bin/dict_summary.py --dict_dir=$INPUT_DIR --output_dir=$OUTPUT_DIR --read_only=no
- name: Get Current Timestamp
id: timestamp
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_all_external.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
- name: Report the results
run: |
ls -R -l $OUTPUT_DIR &&
uv run python ./bin/dict_summary.py --dict_dir=$INPUT_DIR --read_only=no
uv run python ./bin/dict_summary.py --dict_dir=$INPUT_DIR --output_dir=$OUTPUT_DIR --read_only=no
- name: Get Current Timestamp
id: timestamp
Expand Down
2 changes: 2 additions & 0 deletions bin/convert_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,8 @@ def main() -> None:
metadata = args.metadata
dict_filters = args.filter.split(",") if args.filter is not None else []

print("Arguments:" + args)

if input_folder:
metafilelist = sorted(glob.glob(input_folder + f"/*.{metadata}"), reverse=True)
datafilelist = sorted(glob.glob(input_folder + f"/*.{extension}"), reverse=True)
Expand Down

0 comments on commit acf6ae8

Please sign in to comment.