grailbio / bigslice

A serverless cluster computing system for the Go programming language
https://bigslice.io/
Apache License 2.0
550 stars 35 forks source link

bigslice run: command-line arguments parsing bug #91

Closed bereal closed 4 years ago

bereal commented 4 years ago

When I run the example from the docs:

GO111MODULE=on bigslice run shake.go -local

it returns:

bigslice: exec: "-local": executable file not found in $PATH

Added some logging to trace the problem, it turns out that bigslicecmd.Run receives only [-local] as args. There seems to be a bug in cmd/bigslice/run.go.

jcharum commented 4 years ago

@bereal: I think this should be fixed now. Let me know if it works for you, and feel free to file more issues from any problems or friction you encounter. Thanks!

bereal commented 4 years ago

@jcharum It works now, thank you!