You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 26, 2025. It is now read-only.
When passing a file to upload as an absolute path instead of just a filename the filename on the ESP module is the full path on local host.
$ nodemcu-uploader upload --compile /path/to/lua/file/mylua.lua
Remove /path/to/lua/file/mylua.lc
file.remove("/path/to/lua/file/mylua.lc")
stdin:1: filename too long
>
Transfering scwifi.lua as /path/to/lua/file/mylua.lua
Error waiting for esp "recv()
stdin:1: attempt to call global 'recv' (a nil value)
> "
Compile /path/to/lua/file/mylua.lua
node.compile("/path/to/lua/file/mylua.lua")
stdin:1: filename too long
>
Remove /path/to/lua/file/mylua.lua
file.remove("/path/to/lua/file/mylua.lua")
stdin:1: filename too long
The text was updated successfully, but these errors were encountered:
Sometimes it's useful to have the path appended to the filename.
There could be things like...
public/index.html
admin/index.html
There could perhaps be an option to strip some levels of the path from the name, much like you can do with the tar command, but I would not like to use the basename only.
When passing a file to upload as an absolute path instead of just a filename the filename on the ESP module is the full path on local host.
The text was updated successfully, but these errors were encountered: