-
Notifications
You must be signed in to change notification settings - Fork 182
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
Implement rojo open
#622
Implement rojo open
#622
Conversation
src/cli/open.rs
Outdated
|
||
let server = LiveServer::new(Arc::new(session)); | ||
|
||
let _ = show_start_message(ip, port, global.color.into()); |
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.
let _ = show_start_message(ip, port, global.color.into()); | |
show_start_message(ip, port, global.color.into()); |
I think the Result this function returns might need to be handled as well.
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.
I see now that the serve command does this. I guess it was to ignore the result. @LPGhatguy should the result be ignored here?
Superseded by #896. |
Closes #305.
From #305:
Maybe the plugin could expose a function in _G to connect & the server would inject a new plugin that calls that function with the required address and port?