Skip to content

Commit 565ac60

Browse files
authored
fix(RW.CLI): support readonly fs
1 parent cb42ebd commit 565ac60

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

libraries/RW/CLI/local_process.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ def execute_local_command(
7171
if env:
7272
run_with_env.update(env)
7373
try:
74-
tmpdir = tempfile.mkdtemp(dir=PWD)
74+
# tmpdir = tempfile.mkdtemp(dir=PWD)
75+
tmpdir = tempfile.mkdtemp()
7576
parsed_cmd = ["bash", "-c", cmd]
7677
secret_keys = []
7778
for s in request_secrets:

0 commit comments

Comments
 (0)