- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 623
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
feat: support storing, syncing and executing scripts #2644
base: main
Are you sure you want to change the base?
Conversation
fbebf3c
to
8ddfb76
Compare
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 think this looks excellent. A couple questions, otherwise
} | ||
|
||
// Add the script path | ||
cmd.arg(temp_path.to_str().unwrap()); |
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.
Do we need to remove the shebang from the file in this case, since we're executing it directly with the interpreter?
#[arg(short, long)] | ||
pub name: String, |
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.
Thoughts on allowing this to be positional? The other commands that take a script name do so, and it's a required parameter.
ref: #2552
The goal with this PR is to have a totally non-interactive setup. Doesn't really make the most of the rest of the data we have ;)
Follow up with the ability to build scripts via the search tui
Checks