-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Agent extension api #5281
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Agent extension api #5281
Conversation
| if install_script.exists() { | ||
| eprintln!("Installing Node.js..."); | ||
| let output = std::process::Command::new(&install_script) | ||
| .arg("https://nodejs.org/dist/v23.10.0/node-v23.10.0-x64.msi") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is there a better url we could use here, "stable" or something like that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pinning does feel better, actually. though I doubt we'll ever update this
| eprintln!("Node.js installation completed"); | ||
| } else { | ||
| return Err(ErrorResponse::internal(format!( | ||
| "Node.js installer script not found at: {}", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"node.js not detected on system, and no installer script found"
Co-authored-by: Douwe Osinga <[email protected]> Signed-off-by: fbalicchia <[email protected]>
Co-authored-by: Douwe Osinga <[email protected]> Signed-off-by: Blair Allan <[email protected]>
Remove most of the add to and remove from the code base and use the API. try to do the best for windows and showing things, but eh