Skip to content

Commit 9c6f761

Browse files
committed
Fix default temporary directory
1 parent be47b93 commit 9c6f761

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/wcgw/client/bash_state/bash_state.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def is_mac() -> bool:
6363

6464

6565
def get_tmpdir() -> str:
66-
current_tmpdir = os.environ.get("TMPDIR", "")
66+
current_tmpdir = os.environ.get("TMPDIR", "/tmp")
6767
if current_tmpdir or not is_mac():
6868
return current_tmpdir
6969
try:

0 commit comments

Comments
 (0)