Skip to content

Commit 7851634

Browse files
author
Paul Sokolovsky
committed
webrepl_cli.py: Set default SANDBOX to workaround esp8266 FS path issues.
Leading "/" doesn't work for path in esp8266 port curently.
1 parent 508a82c commit 7851634

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

webrepl_cli.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
# Define to 1 to use builtin "websocket" module of MicroPython
1212
USE_BUILTIN_WEBSOCKET = 0
1313
# Treat this remote directory as a root for file transfers
14-
SANDBOX = "/tmp/webrepl/"
14+
SANDBOX = "."
15+
#SANDBOX = "/tmp/webrepl/"
1516

1617

1718
WEBREPL_FILE = "<3sBBBHQH64s"

0 commit comments

Comments
 (0)