-
-
Notifications
You must be signed in to change notification settings - Fork 54
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
Allow runnning executables directly without shell wrapper #88
Comments
seems like union types are a pain in go (I'm might be wrong since I have very little experience with this language) so making command a Adding optional |
That's an interesting proposal. Will it work for you to replace the command with |
I think an array filed is required to simplify passing of args with spaces I've included a draft implementation in #89 |
#89 Is merged in v0.75.1 |
Feature Request
I’d like to be able to specify a command as a list of: [executable, args…] and have it ran directly instead of via a shell.
Note that I’m willing to implement this.
Use Case:
Reducing dependencies needed to run the processes or double-wrapping in a shell, if my executable is already a shell script, which calls other executables.
Proposed Change:
Allow process.command to be an array, in which case it would be invoked directly
Who Benefits From The Change(s)?
People wanting to minimise the deps of their projects.
Alternative Approaches
Not sure.
The text was updated successfully, but these errors were encountered: