Skip to content

Commit 8db61e5

Browse files
committed
esp8266/scripts/inisetup: Don't start WebREPL on boot in master branch.
It interferes with running testsuite. master branch should be optimized for development, so any features which interfere with that, would need to be disabled by default.
1 parent 5ec11f5 commit 8db61e5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

esp8266/scripts/inisetup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def setup():
4040
with open("/boot.py", "w") as f:
4141
f.write("""\
4242
# This file is executed on every boot (including wake-boot from deepsleep)
43-
import webrepl
44-
webrepl.start()
43+
#import webrepl
44+
#webrepl.start()
4545
""")
4646
return vfs

0 commit comments

Comments
 (0)