Skip to content

Commit dcd1b22

Browse files
committed
fix(docs): fix tempdir location for docs build
1 parent 1025b40 commit dcd1b22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shell.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ let
7171
# indavertently preventing this.
7272
export PYTHONPATH TEMPDIR
7373
PYTHONPATH="$(python -c 'import os, sys; print(os.pathsep.join(sys.path))')"
74-
TEMPDIR="$(mktemp -d)"
74+
TEMPDIR="$(python -c 'import tempfile; print(tempfile.gettempdir())')"
7575
7676
mike "$@"
7777
'';

0 commit comments

Comments
 (0)