I've created a private Daggerverse on Github and access it with a PAT.
In my CI I can mask these tokens from being printed out in the Dagger logs.
However locally I'm not clear on how I can do this.
I setup my token with
export GITHUB_PAT=my_git_pat_token_in_plain_text
Then call my function with
dagger -m https://$GITHUB_PAT@github.com/myusers/daggerverse.git/build call build --source=.
In the logs I can see
14 : moduleSource(refString: "https://my_git_pat_token_in_plain_text@github.com/myusers/daggerverse.git/build"): ModuleSource!
How can I stop Dagger showing my PAT value in the logs?