I've been playing with dagger for a couple days now and one thing I occassionally run into is the desire to execute some code in the module. My most recent example is trying to extract git information from a src directory passed to the module that is a dagger.Directory type.
I believe this is just how dagger works in that I cannot find this path via code using some go module like go-git to extract the information I need. Instead I bascially have to exec a bunch of git cmds and parse the output. Is there an altnerative to this?