From 471b5786718845c82ec2c5cc614ce4b764911531 Mon Sep 17 00:00:00 2001 From: Sam Alba Date: Thu, 13 May 2021 10:02:43 -0700 Subject: [PATCH] stdlib: #FetchGit extra args Signed-off-by: Sam Alba --- stdlib/dagger/op/op.cue | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/stdlib/dagger/op/op.cue b/stdlib/dagger/op/op.cue index 43484781..b590160e 100644 --- a/stdlib/dagger/op/op.cue +++ b/stdlib/dagger/op/op.cue @@ -77,9 +77,13 @@ package op } #FetchGit: { - do: "fetch-git" - remote: string - ref: string + do: "fetch-git" + remote: string + ref: string + keepGitDir?: bool + // FIXME: the two options are currently ignored until we support buildkit secrets + authTokenSecret?: string | bytes + authHeaderSecret?: string | bytes } #Copy: {