Deployctl, error: Uncaught (in promise) NotFound: Failed to spawn 'start': program not found
When I try to check the Deno Deploy logs from Deployctl, an error occurs and I cannot log in.
1 Reply
I wasn't able to find the answer to your question in the official Deno documentation.
From the error message you've provided, it seems like the
deployctl
command is trying to spawn a process with the name 'start', which is not found. This could be related to how processes are spawned on your operating system, especially if you're using Windows.
The error is occurring in the provision
function, which is part of the deployctl
tool, as it tries to open an authorization URL in your default web browser. The 'start' command is typically used on Windows to open files or URLs with the default program. If 'start' is not found, it could indicate an issue with your system's PATH environment variable or how the command is being invoked.
Please note that this advice is not based on the Deno documentation, and I would advise you to double-check the accuracy of this advice. It might be helpful to ensure that your system's PATH environment variable is correctly configured to include the necessary directories for running system commands. If the issue persists, you may want to seek assistance from the Deno community or check for updates and bug reports related to deployctl
.