stdlib: rename dagger.io/llb to dagger.io/dagger/op

Signed-off-by: Solomon Hykes <sh.github.6811@hykes.org>
This commit is contained in:
Solomon Hykes
2021-04-06 00:27:51 +00:00
parent 7fb90790f3
commit 6673ae69b3
26 changed files with 143 additions and 143 deletions

View File

@@ -3,7 +3,7 @@ package test
import (
"dagger.io/alpine"
"dagger.io/dagger"
"dagger.io/llb"
"dagger.io/dagger/op"
)
TestData: dagger.#Artifact
@@ -19,13 +19,13 @@ _expected: """
TestIgnore: {
string
#up: [
llb.#Load & {from: alpine.#Image},
llb.#Exec & {
op.#Load & {from: alpine.#Image},
op.#Exec & {
args: ["sh", "-c", "ls /src/* > /out.txt"]
mount: "/src": from: TestData
},
llb.#Export & {source: "/out.txt"},
llb.#Exec & {
op.#Export & {source: "/out.txt"},
op.#Exec & {
args: [
"sh",
"-ec",