execute is default run entrypoint.
(wsl wsllib.WslLib, name string, args []string)
| 150 | |
| 151 | // execute is default run entrypoint. |
| 152 | func execute(wsl wsllib.WslLib, name string, args []string) error { |
| 153 | opts := parseRunArgs(args) |
| 154 | return executeWithOptions(wsl, name, opts) |
| 155 | } |
| 156 | |
| 157 | func executeWithOptions(wsl wsllib.WslLib, name string, opts runOptions) error { |
| 158 | command := "" |