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
I am currently experiencing an issue in a fresh Laravel install with this.
I had a previous issue whereby tsx wasn't installed with the npm package, but I manually installed that.
The currently issue I'm having is The command is not found.
What's strange is, if I dump out the command line and copy it directly into my terminal - it seems to be working fine!
The command\"\"\"'/{ABSOLUTE_PATH}/node_modules/.bin/tsx''/{ABSOLUTE_PATH}/vendor/maantje/react-email/src/../render.tsx''/{ABSOLUTE_PATH}/resources/emails/reset-password''{\"token\":\"emitted\",\"user\":{\"id\":30,\"name\":\"Oda Bailey\",\"email\":\"email@email.com\",\"email_verified_at\":\"2023-10-29T21:25:28.000000Z\",\"created_at\":\"2023-10-29T21:25:28.000000Z\",\"updated_at\":\"2023-10-29T21:25:28.000000Z\"},\"connection\":null,\"queue\":null,\"chainConnection\":null,\"chainQueue\":null,\"chainCatchCallbacks\":null,\"delay\":null,\"afterCommit\":null,\"middleware\":[],\"chained\":[]}'\" failed.\n\nExit Code: 127(Command not found)\n\nWorking directory: /{ABSOLUTE_PATH}\n\nOutput:\n================\n\n\nError Output:\n================\nsh: line 0: exec: : not found\n
Please understand, I have emitted out some of the directories however these are absolute paths which are valid.
The text was updated successfully, but these errors were encountered:
Interesting enough, after some debugging and going into the package this is because:
(newExecutableFinder())->find('node')
is resolving to null, this is because node is installed with homebrew on my machine. Overriding this and setting to /opt/homebrew/bin/node allows the email to send / work.
Hi,
I am currently experiencing an issue in a fresh Laravel install with this.
I had a previous issue whereby tsx wasn't installed with the npm package, but I manually installed that.
The currently issue I'm having is The command is not found.
What's strange is, if I dump out the command line and copy it directly into my terminal - it seems to be working fine!
Please understand, I have emitted out some of the directories however these are absolute paths which are valid.
The text was updated successfully, but these errors were encountered: