Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix No such file or directory: /tmp/mdkatex/... #17

Merged
merged 7 commits into from
Jun 24, 2024

Commits on Apr 8, 2024

  1. Fix typo in requirements

    tovrstra authored and mbarkhau committed Apr 8, 2024
    Configuration menu
    Copy the full SHA
    3f341df View commit details
    Browse the repository at this point in the history
  2. Use unique temporary directory

    tovrstra authored and mbarkhau committed Apr 8, 2024
    Configuration menu
    Copy the full SHA
    90865d2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1e7028b View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2024

  1. no vendoring for pathlib2

    mbarkhau committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    bdd5671 View commit details
    Browse the repository at this point in the history
  2. revert mkdtemp("mdkatex")

    mbarkhau committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    1b6899b View commit details
    Browse the repository at this point in the history
  3. fix concurrency issue

    - make file write operations atomic
    - use "cache" instead of "tmp" as that better reflects
      the nature of the files (whereas /tmp/ is only incidentally
      the directory we use
    mbarkhau committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    b18a1dc View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2024

  1. Fix concurrency issue

    When multiple threads are running, they may both
    cleanup the cache directory at the same time and
    one thread will provoke FileNotFound errors in the
    other thread.
    mbarkhau committed Apr 21, 2024
    Configuration menu
    Copy the full SHA
    278aee4 View commit details
    Browse the repository at this point in the history