Skip to content

Commit

Permalink
fix(docs): fix tempdir location for docs build
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Apr 28, 2022
1 parent 1025b40 commit dcd1b22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ let
# indavertently preventing this.
export PYTHONPATH TEMPDIR
PYTHONPATH="$(python -c 'import os, sys; print(os.pathsep.join(sys.path))')"
TEMPDIR="$(mktemp -d)"
TEMPDIR="$(python -c 'import tempfile; print(tempfile.gettempdir())')"
mike "$@"
'';
Expand Down

0 comments on commit dcd1b22

Please sign in to comment.