Badger2040: Add missing boot.py

This commit is contained in:
Phil Howard 2022-03-04 11:32:11 +00:00
parent d6f444ebb1
commit e096e57566
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
try:
open("main.py", "r")
except OSError:
with open("main.py", "w") as f:
f.write("import _launcher")
f.flush()