universe: git: comments, use null defaults
Signed-off-by: Solomon Hykes <solomon@dagger.io>
This commit is contained in:
parent
f308e51892
commit
89e3bb052e
@ -9,16 +9,23 @@ import (
|
||||
// A git repository
|
||||
#Repository: {
|
||||
|
||||
// Git remote.
|
||||
// Example: "https://github.com/dagger/dagger")
|
||||
remote: string @dagger(input)
|
||||
|
||||
// Git ref: can be a commit, tag or branch.
|
||||
// Example: "main"
|
||||
ref: string @dagger(input)
|
||||
subdir: string | *"" @dagger(input)
|
||||
|
||||
// (optional) Subdirectory
|
||||
subdir: string | *null @dagger(input)
|
||||
|
||||
#up: [
|
||||
op.#FetchGit & {
|
||||
"remote": remote
|
||||
"ref": ref
|
||||
},
|
||||
if subdir != "" {
|
||||
if subdir != null {
|
||||
op.#Subdir & {
|
||||
dir: subdir
|
||||
}
|
||||
|
Reference in New Issue
Block a user