Skip to content

Commit

Permalink
fixup! [tools] Fix hanging of docs.modm.io generator
Browse files Browse the repository at this point in the history
  • Loading branch information
salkinium committed Dec 14, 2024
1 parent 3b1ae1b commit 63de666
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: |
export TERM=xterm-256color
export COLUMNS=120
python3 tools/scripts/docs_modm_io_generator.py -t -c -j4 -d
python3 tools/scripts/docs_modm_io_generator.py -t -c -j2 -d
- name: Upload Doxypress Documentation
uses: actions/upload-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion tools/scripts/docs_modm_io_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def create_target(argument):
print(end="", flush=True)
continue
dot_counter += 1
if dot_counter % 30 == 0: print(".", end="")
if dot_counter % 30 == 0: print(".", end="", flush=True)
file_bytes = file.read_bytes()
if compress == "True":
cfile = file.with_suffix(file.suffix + ".gz")
Expand Down

0 comments on commit 63de666

Please sign in to comment.