MCPcopy
hub / github.com/yuk7/wsldl / execute

Function execute

src/run/command.go:152–155  ·  view source on GitHub ↗

execute is default run entrypoint.

(wsl wsllib.WslLib, name string, args []string)

Source from the content-addressed store, hash-verified

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

Calls 2

parseRunArgsFunction · 0.85
executeWithOptionsFunction · 0.70