pipeline: #compute -> #up

Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
Andrea Luzzardi
2021-04-02 14:58:12 -07:00
committed by Solomon Hykes
parent 6486e159c1
commit 8a4aa4d42b
5 changed files with 10 additions and 7 deletions

View File

@@ -93,7 +93,7 @@ func (dir dirInput) Compile() (*compiler.Value, error) {
}
}
llb := fmt.Sprintf(
`#compute: [{do:"local",dir:"%s", include:%s}]`,
`#up: [{do:"local",dir:"%s", include:%s}]`,
dir.Path,
includeLLB,
)
@@ -125,7 +125,7 @@ func (git gitInput) Compile() (*compiler.Value, error) {
}
return compiler.Compile("", fmt.Sprintf(
`#compute: [{do:"fetch-git", remote:"%s", ref:"%s"}]`,
`#up: [{do:"fetch-git", remote:"%s", ref:"%s"}]`,
git.Remote,
ref,
))