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
Trying to run leaf serve with the --watch option, but getting this error:
❯ leaf serve --watch
sh: /Users/jensr/Library/Application: No such file or directory
node:events:505
throw err; // Unhandled 'error' event
^
Error [ERR_UNHANDLED_ERROR]: Unhandled error. (127)
at Bus.emit (node:events:503:17)
at ChildProcess.<anonymous> (/usr/local/lib/node_modules/@leafphp/watcher/lib/monitor/run.js:190:11)
at ChildProcess.emit (node:events:514:28)
at ChildProcess._handle.onexit (node:internal/child_process:294:12) {
code: 'ERR_UNHANDLED_ERROR',
context: 127
}
Node.js v20.10.0
Notice how it fails on /Users/jensr/Library/Application: No such file or directory? It seems the script is trying to run something under /Users/jensr/Library/Application Scripts or /Users/jensr/Library/Application Support, but it is not handling the path containing the space character correctly.
The text was updated successfully, but these errors were encountered:
Trying to run
leaf serve
with the--watch
option, but getting this error:Notice how it fails on
/Users/jensr/Library/Application: No such file or directory
? It seems the script is trying to run something under/Users/jensr/Library/Application Scripts
or/Users/jensr/Library/Application Support
, but it is not handling the path containing the space character correctly.The text was updated successfully, but these errors were encountered: